From ffb30d9e516c88264a943d4a96df9b4675cdf58d Mon Sep 17 00:00:00 2001 From: speakeasybot Date: Wed, 14 Jun 2023 00:18:08 +0000 Subject: [PATCH 1/4] ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.47.2 --- bankfeeds/RELEASES.md | 10 +++++++- bankfeeds/gen.yaml | 8 +++---- bankfeeds/setup.py | 2 +- .../bank_account_transactions.py | 12 +++------- .../src/codatbankfeeds/bank_feed_accounts.py | 12 +++------- bankfeeds/src/codatbankfeeds/companies.py | 20 ++++------------ bankfeeds/src/codatbankfeeds/connections.py | 24 +++++-------------- .../src/codatbankfeeds/sdkconfiguration.py | 4 ++-- bankfeeds/src/codatbankfeeds/utils/retries.py | 3 ++- 9 files changed, 35 insertions(+), 60 deletions(-) diff --git a/bankfeeds/RELEASES.md b/bankfeeds/RELEASES.md index 481c06061..5be7f0f7c 100644 --- a/bankfeeds/RELEASES.md +++ b/bankfeeds/RELEASES.md @@ -550,4 +550,12 @@ Based on: - OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml - Speakeasy CLI 1.47.1 (2.39.2) https://github.com/speakeasy-api/speakeasy ### Releases -- [PyPI v0.25.2] https://pypi.org/project/codat-bankfeeds/0.25.2 - bankfeeds \ No newline at end of file +- [PyPI v0.25.2] https://pypi.org/project/codat-bankfeeds/0.25.2 - bankfeeds + +## 2023-06-14 00:17:52 +### Changes +Based on: +- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml +- Speakeasy CLI 1.47.2 (2.39.8) https://github.com/speakeasy-api/speakeasy +### Releases +- [PyPI v0.25.3] https://pypi.org/project/codat-bankfeeds/0.25.3 - bankfeeds \ No newline at end of file diff --git a/bankfeeds/gen.yaml b/bankfeeds/gen.yaml index 14b3349d6..6f276e49b 100644 --- a/bankfeeds/gen.yaml +++ b/bankfeeds/gen.yaml @@ -1,15 +1,15 @@ configVersion: 1.0.0 management: - docChecksum: 833c1925fcdfcc1e89fcca65d03c1c2b + docChecksum: 006fdd2b69e599057f4e304137075ad4 docVersion: 2.1.0 - speakeasyVersion: 1.47.1 - generationVersion: 2.39.2 + speakeasyVersion: 1.47.2 + generationVersion: 2.39.8 generation: sdkClassName: CodatBankFeeds singleTagPerOp: false telemetryEnabled: true python: - version: 0.25.2 + version: 0.25.3 author: Speakeasy description: Python Client SDK Generated by Speakeasy maxMethodParams: 0 diff --git a/bankfeeds/setup.py b/bankfeeds/setup.py index 2f6a23c7d..34adc34a2 100755 --- a/bankfeeds/setup.py +++ b/bankfeeds/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="codat-bankfeeds", - version="0.25.2", + version="0.25.3", author="Speakeasy", description="Python Client SDK Generated by Speakeasy", long_description=long_description, diff --git a/bankfeeds/src/codatbankfeeds/bank_account_transactions.py b/bankfeeds/src/codatbankfeeds/bank_account_transactions.py index b1659e212..6ef0e8142 100755 --- a/bankfeeds/src/codatbankfeeds/bank_account_transactions.py +++ b/bankfeeds/src/codatbankfeeds/bank_account_transactions.py @@ -34,9 +34,7 @@ def create(self, request: operations.CreateBankTransactionsRequest, retries: Opt retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('POST', url, params=query_params, data=data, files=form, headers=headers) @@ -77,9 +75,7 @@ def get(self, request: operations.GetCreateBankAccountModelRequest, retries: Opt retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, headers=headers) @@ -121,9 +117,7 @@ def list(self, request: operations.ListBankAccountTransactionsRequest, retries: retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, params=query_params, headers=headers) diff --git a/bankfeeds/src/codatbankfeeds/bank_feed_accounts.py b/bankfeeds/src/codatbankfeeds/bank_feed_accounts.py index c3fd69edc..a4a25e324 100755 --- a/bankfeeds/src/codatbankfeeds/bank_feed_accounts.py +++ b/bankfeeds/src/codatbankfeeds/bank_feed_accounts.py @@ -31,9 +31,7 @@ def create(self, request: operations.CreateBankFeedRequest, retries: Optional[ut retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('PUT', url, data=data, files=form, headers=headers) @@ -74,9 +72,7 @@ def get(self, request: operations.GetBankFeedsRequest, retries: Optional[utils.R retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, headers=headers) @@ -120,9 +116,7 @@ def update(self, request: operations.UpdateBankFeedRequest, retries: Optional[ut retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('PATCH', url, data=data, files=form, headers=headers) diff --git a/bankfeeds/src/codatbankfeeds/companies.py b/bankfeeds/src/codatbankfeeds/companies.py index f16e5ef11..69469fb29 100755 --- a/bankfeeds/src/codatbankfeeds/companies.py +++ b/bankfeeds/src/codatbankfeeds/companies.py @@ -31,9 +31,7 @@ def create(self, request: shared.CompanyRequestBody, retries: Optional[utils.Ret retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('POST', url, data=data, files=form, headers=headers) @@ -75,9 +73,7 @@ def delete(self, request: operations.DeleteCompanyRequest, retries: Optional[uti retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('DELETE', url, headers=headers) @@ -116,9 +112,7 @@ def get(self, request: operations.GetCompanyRequest, retries: Optional[utils.Ret retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, headers=headers) @@ -160,9 +154,7 @@ def list(self, request: operations.ListCompaniesRequest, retries: Optional[utils retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, params=query_params, headers=headers) @@ -206,9 +198,7 @@ def update(self, request: operations.UpdateCompanyRequest, retries: Optional[uti retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('PUT', url, data=data, files=form, headers=headers) diff --git a/bankfeeds/src/codatbankfeeds/connections.py b/bankfeeds/src/codatbankfeeds/connections.py index f32999ca2..4b1869574 100755 --- a/bankfeeds/src/codatbankfeeds/connections.py +++ b/bankfeeds/src/codatbankfeeds/connections.py @@ -31,9 +31,7 @@ def create(self, request: operations.CreateDataConnectionRequest, retries: Optio retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('POST', url, data=data, files=form, headers=headers) @@ -75,9 +73,7 @@ def delete(self, request: operations.DeleteCompanyConnectionRequest, retries: Op retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('DELETE', url, headers=headers) @@ -116,9 +112,7 @@ def get(self, request: operations.GetCompanyConnectionRequest, retries: Optional retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, headers=headers) @@ -160,9 +154,7 @@ def list(self, request: operations.ListCompanyConnectionsRequest, retries: Optio retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('GET', url, params=query_params, headers=headers) @@ -204,9 +196,7 @@ def proxy(self, request: operations.ProxyRequest, retries: Optional[utils.RetryC retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('POST', url, params=query_params, headers=headers) @@ -250,9 +240,7 @@ def unlink_connection(self, request: operations.UnlinkConnectionRequest, retries retry_config = retries if retry_config is None: - retry_config = utils.RetryConfig('backoff', True) - retry_config.backoff = utils.BackoffStrategy(500, 60000, 1.5, 3600000) - + retry_config = utils.RetryConfig('backoff', utils.BackoffStrategy(500, 60000, 1.5, 3600000), True) def do_request(): return client.request('PATCH', url, data=data, files=form, headers=headers) diff --git a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py index 733d2bc25..05c8033d9 100755 --- a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py +++ b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py @@ -18,8 +18,8 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '2.1.0' - sdk_version: str = '0.25.2' - gen_version: str = '2.39.2' + sdk_version: str = '0.25.3' + gen_version: str = '2.39.8' def get_server_details(self) -> tuple[str, dict[str, str]]: if self.server_url: diff --git a/bankfeeds/src/codatbankfeeds/utils/retries.py b/bankfeeds/src/codatbankfeeds/utils/retries.py index c6251d948..2138c1b5e 100755 --- a/bankfeeds/src/codatbankfeeds/utils/retries.py +++ b/bankfeeds/src/codatbankfeeds/utils/retries.py @@ -24,8 +24,9 @@ class RetryConfig: backoff: BackoffStrategy retry_connection_errors: bool - def __init__(self, strategy: str, retry_connection_errors: bool): + def __init__(self, strategy: str, backoff: BackoffStrategy, retry_connection_errors: bool): self.strategy = strategy + self.backoff = backoff self.retry_connection_errors = retry_connection_errors From ce45ec31519d3aafdc368a210e1e691f19480276 Mon Sep 17 00:00:00 2001 From: speakeasybot Date: Thu, 15 Jun 2023 00:19:05 +0000 Subject: [PATCH 2/4] ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.47.4 --- bankfeeds/RELEASES.md | 10 +++++++++- bankfeeds/docs/models/shared/company.md | 2 +- .../models/shared/createbanktransactionsresponse.md | 2 +- bankfeeds/gen.yaml | 6 +++--- bankfeeds/setup.py | 2 +- bankfeeds/src/codatbankfeeds/models/shared/company.py | 1 + .../models/shared/createbanktransactionsresponse.py | 1 + bankfeeds/src/codatbankfeeds/sdkconfiguration.py | 4 ++-- 8 files changed, 19 insertions(+), 9 deletions(-) diff --git a/bankfeeds/RELEASES.md b/bankfeeds/RELEASES.md index 5be7f0f7c..870d3cbcf 100644 --- a/bankfeeds/RELEASES.md +++ b/bankfeeds/RELEASES.md @@ -558,4 +558,12 @@ Based on: - OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml - Speakeasy CLI 1.47.2 (2.39.8) https://github.com/speakeasy-api/speakeasy ### Releases -- [PyPI v0.25.3] https://pypi.org/project/codat-bankfeeds/0.25.3 - bankfeeds \ No newline at end of file +- [PyPI v0.25.3] https://pypi.org/project/codat-bankfeeds/0.25.3 - bankfeeds + +## 2023-06-15 00:18:37 +### Changes +Based on: +- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml +- Speakeasy CLI 1.47.4 (2.40.1) https://github.com/speakeasy-api/speakeasy +### Releases +- [PyPI v0.26.0] https://pypi.org/project/codat-bankfeeds/0.26.0 - bankfeeds \ No newline at end of file diff --git a/bankfeeds/docs/models/shared/company.md b/bankfeeds/docs/models/shared/company.md index ee03e4c67..504f2491e 100755 --- a/bankfeeds/docs/models/shared/company.md +++ b/bankfeeds/docs/models/shared/company.md @@ -14,5 +14,5 @@ A company in Codat represent a small or medium sized business, whose data you wi | `id` | *str* | :heavy_check_mark: | Unique identifier for your SMB in Codat. | 8a210b68-6988-11ed-a1eb-0242ac120002 | | `last_sync` | *Optional[str]* | :heavy_minus_sign: | In Codat's data model, dates and times are represented using the ISO 8601 standard. Date and time fields are formatted as strings; for example:

```
2020-10-08T22:40:50Z
2021-01-01T00:00:00
```



When syncing data that contains `DateTime` fields from Codat, make sure you support the following cases when reading time information:

- Coordinated Universal Time (UTC): `2021-11-15T06:00:00Z`
- Unqualified local time: `2021-11-15T01:00:00`
- UTC time offsets: `2021-11-15T01:00:00-05:00`

> Time zones
>
> Not all dates from Codat will contain information about time zones.
> Where it is not available from the underlying platform, Codat will return these as times local to the business whose data has been synced. | 2022-10-23T00:00:00.000Z | | `name` | *str* | :heavy_check_mark: | The name of the company | Codat Ltd. | -| `platform` | *Optional[str]* | :heavy_minus_sign: | N/A | Xero | +| ~~`platform`~~ | *Optional[str]* | :heavy_minus_sign: | :warning: **DEPRECATED**: this will be removed in a future release, please migrate away from it as soon as possible. | Xero | | `redirect` | *str* | :heavy_check_mark: | The `redirect` [Link URL](https://docs.codat.io/auth-flow/authorize-hosted-link) enabling the customer to start their auth flow journey for the company. | https://link.codat.io/company/27628208-459c-46a2-a705-5641ce25f739 | \ No newline at end of file diff --git a/bankfeeds/docs/models/shared/createbanktransactionsresponse.md b/bankfeeds/docs/models/shared/createbanktransactionsresponse.md index ca41c5fce..9f803b24e 100755 --- a/bankfeeds/docs/models/shared/createbanktransactionsresponse.md +++ b/bankfeeds/docs/models/shared/createbanktransactionsresponse.md @@ -19,5 +19,5 @@ Success | `status` | [PushOperationStatus](../../models/shared/pushoperationstatus.md) | :heavy_check_mark: | The status of the push operation. | | | `status_code` | *int* | :heavy_check_mark: | N/A | | | `timeout_in_minutes` | *Optional[int]* | :heavy_minus_sign: | N/A | | -| `timeout_in_seconds` | *Optional[int]* | :heavy_minus_sign: | N/A | | +| ~~`timeout_in_seconds`~~ | *Optional[int]* | :heavy_minus_sign: | :warning: **DEPRECATED**: this will be removed in a future release, please migrate away from it as soon as possible. | | | `validation` | [Optional[Validation]](../../models/shared/validation.md) | :heavy_minus_sign: | A human-readable object describing validation decisions Codat has made when pushing data into the platform. If a push has failed because of validation errors, they will be detailed here. | | \ No newline at end of file diff --git a/bankfeeds/gen.yaml b/bankfeeds/gen.yaml index 6f276e49b..b32b51249 100644 --- a/bankfeeds/gen.yaml +++ b/bankfeeds/gen.yaml @@ -2,14 +2,14 @@ configVersion: 1.0.0 management: docChecksum: 006fdd2b69e599057f4e304137075ad4 docVersion: 2.1.0 - speakeasyVersion: 1.47.2 - generationVersion: 2.39.8 + speakeasyVersion: 1.47.4 + generationVersion: 2.40.1 generation: sdkClassName: CodatBankFeeds singleTagPerOp: false telemetryEnabled: true python: - version: 0.25.3 + version: 0.26.0 author: Speakeasy description: Python Client SDK Generated by Speakeasy maxMethodParams: 0 diff --git a/bankfeeds/setup.py b/bankfeeds/setup.py index 34adc34a2..4e89af88f 100755 --- a/bankfeeds/setup.py +++ b/bankfeeds/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="codat-bankfeeds", - version="0.25.3", + version="0.26.0", author="Speakeasy", description="Python Client SDK Generated by Speakeasy", long_description=long_description, diff --git a/bankfeeds/src/codatbankfeeds/models/shared/company.py b/bankfeeds/src/codatbankfeeds/models/shared/company.py index 75b33ab18..fb9abbe8c 100755 --- a/bankfeeds/src/codatbankfeeds/models/shared/company.py +++ b/bankfeeds/src/codatbankfeeds/models/shared/company.py @@ -66,5 +66,6 @@ class Company: > Where it is not available from the underlying platform, Codat will return these as times local to the business whose data has been synced. """ platform: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('platform'), 'exclude': lambda f: f is None }}) + r"""Deprecated: this field will be removed in a future release, please migrate away from it as soon as possible""" diff --git a/bankfeeds/src/codatbankfeeds/models/shared/createbanktransactionsresponse.py b/bankfeeds/src/codatbankfeeds/models/shared/createbanktransactionsresponse.py index 6ef399617..4f42d82ea 100755 --- a/bankfeeds/src/codatbankfeeds/models/shared/createbanktransactionsresponse.py +++ b/bankfeeds/src/codatbankfeeds/models/shared/createbanktransactionsresponse.py @@ -75,6 +75,7 @@ class CreateBankTransactionsResponse: error_message: Optional[str] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('errorMessage'), 'exclude': lambda f: f is None }}) timeout_in_minutes: Optional[int] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('timeoutInMinutes'), 'exclude': lambda f: f is None }}) timeout_in_seconds: Optional[int] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('timeoutInSeconds'), 'exclude': lambda f: f is None }}) + r"""Deprecated: this field will be removed in a future release, please migrate away from it as soon as possible""" validation: Optional[shared_validation.Validation] = dataclasses.field(default=None, metadata={'dataclasses_json': { 'letter_case': utils.get_field_name('validation'), 'exclude': lambda f: f is None }}) r"""A human-readable object describing validation decisions Codat has made when pushing data into the platform. If a push has failed because of validation errors, they will be detailed here.""" diff --git a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py index 05c8033d9..627ff44df 100755 --- a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py +++ b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py @@ -18,8 +18,8 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '2.1.0' - sdk_version: str = '0.25.3' - gen_version: str = '2.39.8' + sdk_version: str = '0.26.0' + gen_version: str = '2.40.1' def get_server_details(self) -> tuple[str, dict[str, str]]: if self.server_url: From d210566e37e0dee6c1ab0571fc776c4392c7666e Mon Sep 17 00:00:00 2001 From: speakeasybot Date: Fri, 16 Jun 2023 00:19:05 +0000 Subject: [PATCH 3/4] ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.48.0 --- bankfeeds/.gitignore | 2 +- bankfeeds/RELEASES.md | 10 +++++++++- bankfeeds/files.gen | 1 - bankfeeds/gen.yaml | 6 +++--- bankfeeds/setup.py | 2 +- bankfeeds/src/codatbankfeeds/sdkconfiguration.py | 4 ++-- 6 files changed, 16 insertions(+), 9 deletions(-) diff --git a/bankfeeds/.gitignore b/bankfeeds/.gitignore index 9072ad43b..648876d29 100755 --- a/bankfeeds/.gitignore +++ b/bankfeeds/.gitignore @@ -2,4 +2,4 @@ venv/ src/*.egg-info/ __pycache__/ .pytest_cache/ -.python-version` \ No newline at end of file +.python-version` diff --git a/bankfeeds/RELEASES.md b/bankfeeds/RELEASES.md index 870d3cbcf..099905a88 100644 --- a/bankfeeds/RELEASES.md +++ b/bankfeeds/RELEASES.md @@ -566,4 +566,12 @@ Based on: - OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml - Speakeasy CLI 1.47.4 (2.40.1) https://github.com/speakeasy-api/speakeasy ### Releases -- [PyPI v0.26.0] https://pypi.org/project/codat-bankfeeds/0.26.0 - bankfeeds \ No newline at end of file +- [PyPI v0.26.0] https://pypi.org/project/codat-bankfeeds/0.26.0 - bankfeeds + +## 2023-06-16 00:18:40 +### Changes +Based on: +- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml +- Speakeasy CLI 1.48.0 (2.41.1) https://github.com/speakeasy-api/speakeasy +### Releases +- [PyPI v0.27.0] https://pypi.org/project/codat-bankfeeds/0.27.0 - bankfeeds \ No newline at end of file diff --git a/bankfeeds/files.gen b/bankfeeds/files.gen index f0825658a..cc9f995a0 100755 --- a/bankfeeds/files.gen +++ b/bankfeeds/files.gen @@ -4,7 +4,6 @@ src/codatbankfeeds/bank_feed_accounts.py src/codatbankfeeds/companies.py src/codatbankfeeds/connections.py src/codatbankfeeds/sdk.py -.gitignore pylintrc setup.py src/codatbankfeeds/__init__.py diff --git a/bankfeeds/gen.yaml b/bankfeeds/gen.yaml index b32b51249..a61068957 100644 --- a/bankfeeds/gen.yaml +++ b/bankfeeds/gen.yaml @@ -2,14 +2,14 @@ configVersion: 1.0.0 management: docChecksum: 006fdd2b69e599057f4e304137075ad4 docVersion: 2.1.0 - speakeasyVersion: 1.47.4 - generationVersion: 2.40.1 + speakeasyVersion: 1.48.0 + generationVersion: 2.41.1 generation: sdkClassName: CodatBankFeeds singleTagPerOp: false telemetryEnabled: true python: - version: 0.26.0 + version: 0.27.0 author: Speakeasy description: Python Client SDK Generated by Speakeasy maxMethodParams: 0 diff --git a/bankfeeds/setup.py b/bankfeeds/setup.py index 4e89af88f..9cba663f2 100755 --- a/bankfeeds/setup.py +++ b/bankfeeds/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="codat-bankfeeds", - version="0.26.0", + version="0.27.0", author="Speakeasy", description="Python Client SDK Generated by Speakeasy", long_description=long_description, diff --git a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py index 627ff44df..e0ad8a22f 100755 --- a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py +++ b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py @@ -18,8 +18,8 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '2.1.0' - sdk_version: str = '0.26.0' - gen_version: str = '2.40.1' + sdk_version: str = '0.27.0' + gen_version: str = '2.41.1' def get_server_details(self) -> tuple[str, dict[str, str]]: if self.server_url: From b4fee534a8f8dc31356ab1a69986505e8d351408 Mon Sep 17 00:00:00 2001 From: speakeasybot Date: Fri, 16 Jun 2023 11:03:39 +0000 Subject: [PATCH 4/4] ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.48.0 --- bankfeeds/RELEASES.md | 10 +++++++++- bankfeeds/gen.yaml | 2 +- bankfeeds/setup.py | 2 +- bankfeeds/src/codatbankfeeds/sdkconfiguration.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/bankfeeds/RELEASES.md b/bankfeeds/RELEASES.md index 099905a88..d8e0517c6 100644 --- a/bankfeeds/RELEASES.md +++ b/bankfeeds/RELEASES.md @@ -574,4 +574,12 @@ Based on: - OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml - Speakeasy CLI 1.48.0 (2.41.1) https://github.com/speakeasy-api/speakeasy ### Releases -- [PyPI v0.27.0] https://pypi.org/project/codat-bankfeeds/0.27.0 - bankfeeds \ No newline at end of file +- [PyPI v0.27.0] https://pypi.org/project/codat-bankfeeds/0.27.0 - bankfeeds + +## 2023-06-16 11:03:21 +### Changes +Based on: +- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml +- Speakeasy CLI 1.48.0 (2.41.1) https://github.com/speakeasy-api/speakeasy +### Releases +- [PyPI v0.27.1] https://pypi.org/project/codat-bankfeeds/0.27.1 - bankfeeds \ No newline at end of file diff --git a/bankfeeds/gen.yaml b/bankfeeds/gen.yaml index a61068957..d4666febf 100644 --- a/bankfeeds/gen.yaml +++ b/bankfeeds/gen.yaml @@ -9,7 +9,7 @@ generation: singleTagPerOp: false telemetryEnabled: true python: - version: 0.27.0 + version: 0.27.1 author: Speakeasy description: Python Client SDK Generated by Speakeasy maxMethodParams: 0 diff --git a/bankfeeds/setup.py b/bankfeeds/setup.py index 9cba663f2..a26b7863c 100755 --- a/bankfeeds/setup.py +++ b/bankfeeds/setup.py @@ -10,7 +10,7 @@ setuptools.setup( name="codat-bankfeeds", - version="0.27.0", + version="0.27.1", author="Speakeasy", description="Python Client SDK Generated by Speakeasy", long_description=long_description, diff --git a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py index e0ad8a22f..029603037 100755 --- a/bankfeeds/src/codatbankfeeds/sdkconfiguration.py +++ b/bankfeeds/src/codatbankfeeds/sdkconfiguration.py @@ -18,7 +18,7 @@ class SDKConfiguration: server_idx: int = 0 language: str = 'python' openapi_doc_version: str = '2.1.0' - sdk_version: str = '0.27.0' + sdk_version: str = '0.27.1' gen_version: str = '2.41.1' def get_server_details(self) -> tuple[str, dict[str, str]]: