Skip to content

Commit 56ca580

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.38.0
1 parent e21da81 commit 56ca580

File tree

15 files changed

+112
-22
lines changed

15 files changed

+112
-22
lines changed

bankfeeds/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,4 +454,12 @@ Based on:
454454
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
455455
- Speakeasy CLI 1.37.5 (2.32.2) https://github.com/speakeasy-api/speakeasy
456456
### Releases
457-
- [PyPI v0.21.0] https://pypi.org/project/codat-bank-feeds/0.21.0 - bankfeeds
457+
- [PyPI v0.21.0] https://pypi.org/project/codat-bank-feeds/0.21.0 - bankfeeds
458+
459+
## 2023-05-27 00:18:27
460+
### Changes
461+
Based on:
462+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
463+
- Speakeasy CLI 1.38.0 (2.32.7) https://github.com/speakeasy-api/speakeasy
464+
### Releases
465+
- [PyPI v0.21.1] https://pypi.org/project/codat-bank-feeds/0.21.1 - bankfeeds

bankfeeds/docs/codatbankfeeds/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ if res.bank_feed_accounts is not None:
7676

7777
Posts bank transactions to the accounting package for a given company.
7878

79-
> **Supported Integrations**
80-
>
81-
> Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bankTransactions) for integrations that support POST methods.
79+
Check out our [coverage explorer](https://knowledge.codat.io/supported-features/accounting?view=tab-by-data-type&dataType=bankTransactions) to see which integrations support this endpoint.
8280

8381
### Example Usage
8482

bankfeeds/files.gen

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ src/codatbankfeeds/models/operations/get_create_bank_account_model.py
1313
src/codatbankfeeds/models/operations/list_bank_account_transactions.py
1414
src/codatbankfeeds/models/operations/update_bank_feed.py
1515
src/codatbankfeeds/models/operations/__init__.py
16+
src/codatbankfeeds/models/shared/schema.py
1617
src/codatbankfeeds/models/shared/bankfeedaccount.py
1718
src/codatbankfeeds/models/shared/createbanktransactionsresponse.py
1819
src/codatbankfeeds/models/shared/validation.py

bankfeeds/gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: ca13eecf771fce3afa5e20f488aef047
3+
docChecksum: 47932a3345d0b1883c68dfd5faceebed
44
docVersion: 2.1.0
5-
speakeasyVersion: 1.37.5
6-
generationVersion: 2.32.2
5+
speakeasyVersion: 1.38.0
6+
generationVersion: 2.32.7
77
generation:
88
sdkClassName: CodatBankFeeds
99
singleTagPerOp: false
1010
tagNamespacingDisabled: true
1111
telemetryEnabled: true
1212
python:
13-
version: 0.21.0
13+
version: 0.21.1
1414
author: Speakeasy
1515
description: Python Client SDK Generated by Speakeasy
1616
maxMethodParams: 0

bankfeeds/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="codat-bank-feeds",
13-
version="0.21.0",
13+
version="0.21.1",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

bankfeeds/src/codatbankfeeds/models/operations/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .list_bank_account_transactions import *
88
from .update_bank_feed import *
99

10-
__all__ = ["CreateBankFeedRequest","CreateBankFeedResponse","CreateBankTransactionsRequest","CreateBankTransactionsResponse","GetBankFeedsRequest","GetBankFeedsResponse","GetCreateBankAccountModelRequest","GetCreateBankAccountModelResponse","ListBankAccountTransactionsRequest","ListBankAccountTransactionsResponse","UpdateBankFeedRequest","UpdateBankFeedResponse"]
10+
__all__ = ["CreateBankFeedRequest","CreateBankFeedResponse","CreateBankTransactionsRequest","CreateBankTransactionsResponse","GetBankFeedsRequest","GetBankFeedsResponse","GetCreateBankAccountModelRequest","GetCreateBankAccountModelResponse","ListBankAccountTransactions409ApplicationJSON","ListBankAccountTransactionsRequest","ListBankAccountTransactionsResponse","UpdateBankFeedRequest","UpdateBankFeedResponse"]

bankfeeds/src/codatbankfeeds/models/operations/create_bank_feed.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import dataclasses
55
import requests as requests_http
66
from ..shared import bankfeedaccount as shared_bankfeedaccount
7+
from ..shared import schema as shared_schema
78
from typing import Optional
89

910

@@ -23,4 +24,6 @@ class CreateBankFeedResponse:
2324
bank_feed_accounts: Optional[list[shared_bankfeedaccount.BankFeedAccount]] = dataclasses.field(default=None)
2425
r"""Success"""
2526
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
27+
schema: Optional[shared_schema.Schema] = dataclasses.field(default=None)
28+
r"""Your API request was not properly authorized."""
2629

bankfeeds/src/codatbankfeeds/models/operations/create_bank_transactions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import requests as requests_http
66
from ..shared import banktransactions as shared_banktransactions
77
from ..shared import createbanktransactionsresponse as shared_createbanktransactionsresponse
8+
from ..shared import schema as shared_schema
89
from typing import Optional
910

1011

@@ -28,4 +29,6 @@ class CreateBankTransactionsResponse:
2829
create_bank_transactions_response: Optional[shared_createbanktransactionsresponse.CreateBankTransactionsResponse] = dataclasses.field(default=None)
2930
r"""Success"""
3031
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
32+
schema: Optional[shared_schema.Schema] = dataclasses.field(default=None)
33+
r"""Your API request was not properly authorized."""
3134

bankfeeds/src/codatbankfeeds/models/operations/get_bank_feeds.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import dataclasses
55
import requests as requests_http
66
from ..shared import bankfeedaccount as shared_bankfeedaccount
7+
from ..shared import schema as shared_schema
78
from typing import Optional
89

910

@@ -22,4 +23,6 @@ class GetBankFeedsResponse:
2223
bank_feed_accounts: Optional[list[shared_bankfeedaccount.BankFeedAccount]] = dataclasses.field(default=None)
2324
r"""Success"""
2425
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
26+
schema: Optional[shared_schema.Schema] = dataclasses.field(default=None)
27+
r"""Your API request was not properly authorized."""
2528

bankfeeds/src/codatbankfeeds/models/operations/get_create_bank_account_model.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import dataclasses
55
import requests as requests_http
66
from ..shared import pushoption as shared_pushoption
7+
from ..shared import schema as shared_schema
78
from typing import Optional
89

910

@@ -24,4 +25,6 @@ class GetCreateBankAccountModelResponse:
2425
push_option: Optional[shared_pushoption.PushOption] = dataclasses.field(default=None)
2526
r"""Success"""
2627
raw_response: Optional[requests_http.Response] = dataclasses.field(default=None)
28+
schema: Optional[shared_schema.Schema] = dataclasses.field(default=None)
29+
r"""Your API request was not properly authorized."""
2730

0 commit comments

Comments
 (0)