Skip to content

Commit d1dbe39

Browse files
committed
ci: regenerated with OpenAPI Doc 2.1.0, Speakeay CLI 1.53.0
1 parent c89f0be commit d1dbe39

File tree

7 files changed

+21
-13
lines changed

7 files changed

+21
-13
lines changed

bankfeeds/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if res.account_mapping_result is not None:
5151
### [bank_account_transactions](docs/sdks/bankaccounttransactions/README.md)
5252

5353
* [create](docs/sdks/bankaccounttransactions/README.md#create) - Create bank account transactions
54-
* [get](docs/sdks/bankaccounttransactions/README.md#get) - Get create bank account transactions model
54+
* [get_create_model](docs/sdks/bankaccounttransactions/README.md#get_create_model) - Get create bank account transactions model
5555
* [list](docs/sdks/bankaccounttransactions/README.md#list) - List bank account transactions
5656

5757
### [bank_feed_accounts](docs/sdks/bankfeedaccounts/README.md)

bankfeeds/RELEASES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,4 +662,12 @@ Based on:
662662
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
663663
- Speakeasy CLI 1.52.2 (2.57.2) https://github.com/speakeasy-api/speakeasy
664664
### Releases
665-
- [PyPI v0.32.0] https://pypi.org/project/codat-bankfeeds/0.32.0 - bankfeeds
665+
- [PyPI v0.32.0] https://pypi.org/project/codat-bankfeeds/0.32.0 - bankfeeds
666+
667+
## 2023-07-07 00:20:53
668+
### Changes
669+
Based on:
670+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
671+
- Speakeasy CLI 1.53.0 (2.58.0) https://github.com/speakeasy-api/speakeasy
672+
### Releases
673+
- [PyPI v0.33.0] https://pypi.org/project/codat-bankfeeds/0.33.0 - bankfeeds

bankfeeds/docs/sdks/bankaccounttransactions/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Bank feed bank accounts
77
### Available Operations
88

99
* [create](#create) - Create bank account transactions
10-
* [get](#get) - Get create bank account transactions model
10+
* [get_create_model](#get_create_model) - Get create bank account transactions model
1111
* [list](#list) - List bank account transactions
1212

1313
## create
@@ -95,7 +95,7 @@ if res.create_bank_transactions_response is not None:
9595
**[operations.CreateBankTransactionsResponse](../../models/operations/createbanktransactionsresponse.md)**
9696

9797

98-
## get
98+
## get_create_model
9999

100100
The *Get create bank account transactions model* endpoint returns the expected data for the request payload when creating [bank account transactions](https://docs.codat.io/bank-feeds-api#/schemas/BankTransactions) for a given company and integration.
101101

@@ -126,7 +126,7 @@ req = operations.GetCreateBankTransactionsModelRequest(
126126
connection_id='2e9d2c44-f675-40ba-8049-353bfcb5e171',
127127
)
128128

129-
res = s.bank_account_transactions.get(req)
129+
res = s.bank_account_transactions.get_create_model(req)
130130

131131
if res.push_option is not None:
132132
# handle response

bankfeeds/gen.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
configVersion: 1.0.0
22
management:
3-
docChecksum: e2f3ee98e836d84001bd733368541865
3+
docChecksum: 7f050717ff4b23bd80a783297e3a1cee
44
docVersion: 2.1.0
5-
speakeasyVersion: 1.52.2
6-
generationVersion: 2.57.2
5+
speakeasyVersion: 1.53.0
6+
generationVersion: 2.58.0
77
generation:
88
sdkClassName: CodatBankFeeds
99
singleTagPerOp: false
1010
telemetryEnabled: true
1111
python:
12-
version: 0.32.0
12+
version: 0.33.0
1313
author: Speakeasy
1414
description: Python Client SDK Generated by Speakeasy
1515
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-bankfeeds",
13-
version="0.32.0",
13+
version="0.33.0",
1414
author="Speakeasy",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,

bankfeeds/src/codatbankfeeds/bank_account_transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def do_request():
6666
return res
6767

6868

69-
def get(self, request: operations.GetCreateBankTransactionsModelRequest, retries: Optional[utils.RetryConfig] = None) -> operations.GetCreateBankTransactionsModelResponse:
69+
def get_create_model(self, request: operations.GetCreateBankTransactionsModelRequest, retries: Optional[utils.RetryConfig] = None) -> operations.GetCreateBankTransactionsModelResponse:
7070
r"""Get create bank account transactions model
7171
The *Get create bank account transactions model* endpoint returns the expected data for the request payload when creating [bank account transactions](https://docs.codat.io/bank-feeds-api#/schemas/BankTransactions) for a given company and integration.
7272

bankfeeds/src/codatbankfeeds/sdkconfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class SDKConfiguration:
1818
server_idx: int = 0
1919
language: str = 'python'
2020
openapi_doc_version: str = '2.1.0'
21-
sdk_version: str = '0.32.0'
22-
gen_version: str = '2.57.2'
21+
sdk_version: str = '0.33.0'
22+
gen_version: str = '2.58.0'
2323

2424
def get_server_details(self) -> tuple[str, dict[str, str]]:
2525
if self.server_url:

0 commit comments

Comments
 (0)