Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 14 additions & 21 deletions bankfeeds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,21 @@ pip install codat-bankfeeds
import codat
from codat.models import operations, shared

s = codat.Codat()
s.config_security(
s = codat.Codat(
security=shared.Security(
api_key="YOUR_API_KEY_HERE",
)
auth_header="YOUR_API_KEY_HERE",
),
)



req = operations.GetBankAccountPushOptionsRequest(
security=operations.GetBankAccountPushOptionsSecurity(
api_key="YOUR_API_KEY_HERE",
),
path_params=operations.GetBankAccountPushOptionsPathParams(
account_id="unde",
company_id="deserunt",
connection_id="porro",
),
query_params=operations.GetBankAccountPushOptionsQueryParams(
order_by="nulla",
page=6027.63,
page_size=8579.46,
query="perspiciatis",
),
account_id="unde",
company_id="deserunt",
connection_id="porro",
order_by="nulla",
page=6027.63,
page_size=8579.46,
query="perspiciatis",
)

res = s.bank_account_transactions.get_bank_account_push_options(req)
Expand All @@ -52,13 +45,13 @@ if res.push_option is not None:
### bank_account_transactions

* `get_bank_account_push_options` - List push options for bank account bank transactions
* `list_all_bank_transactionscount` - List bank transactions for bank account
* `list_bank_account_transactions` - List bank transactions for bank account
* `post_bank_transactions` - Create bank transactions

### bank_feed_accounts

* `create_bank_feed` - Create bank feed bank accounts
* `get_bank_feeds` - List bank feed bank accounts
* `put_bank_feeds` - Update bank feed bank accounts
* `update_bank_feed` - Update bank feed bank account
<!-- End SDK Available Operations -->

Expand Down
66 changes: 65 additions & 1 deletion bankfeeds/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,68 @@ Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.7.1 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.1.1] https://pypi.org/project/codat-bankfeeds/0.1.1 - bankfeeds
- [PyPI v0.1.1] https://pypi.org/project/codat-bankfeeds/0.1.1 - bankfeeds

## 2023-03-04 00:17:14
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.8.2 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.2.0] https://pypi.org/project/codat-bankfeeds/0.2.0 - bankfeeds

## 2023-03-06 00:19:15
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.8.4 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.2.1] https://pypi.org/project/codat-bankfeeds/0.2.1 - bankfeeds

## 2023-03-07 00:19:35
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.8.5 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.2.2] https://pypi.org/project/codat-bankfeeds/0.2.2 - bankfeeds

## 2023-03-08 00:18:50
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.8.6 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.2.3] https://pypi.org/project/codat-bankfeeds/0.2.3 - bankfeeds

## 2023-03-09 00:18:55
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.8.7 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.2.4] https://pypi.org/project/codat-bankfeeds/0.2.4 - bankfeeds

## 2023-03-10 00:18:44
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.9.1 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.3.0] https://pypi.org/project/codat-bankfeeds/0.3.0 - bankfeeds

## 2023-03-11 00:16:21
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.9.2 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.3.1] https://pypi.org/project/codat-bankfeeds/0.3.1 - bankfeeds

## 2023-03-15 00:18:03
### Changes
Based on:
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
- Speakeasy CLI 1.11.0 https://github.com/speakeasy-api/speakeasy
### Releases
- [PyPI v0.4.0] https://pypi.org/project/codat-bankfeeds/0.4.0 - bankfeeds
31 changes: 12 additions & 19 deletions bankfeeds/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,21 @@
import codat
from codat.models import operations, shared

s = codat.Codat()
s.config_security(
s = codat.Codat(
security=shared.Security(
api_key="YOUR_API_KEY_HERE",
)
auth_header="YOUR_API_KEY_HERE",
),
)



req = operations.GetBankAccountPushOptionsRequest(
security=operations.GetBankAccountPushOptionsSecurity(
api_key="YOUR_API_KEY_HERE",
),
path_params=operations.GetBankAccountPushOptionsPathParams(
account_id="unde",
company_id="deserunt",
connection_id="porro",
),
query_params=operations.GetBankAccountPushOptionsQueryParams(
order_by="nulla",
page=6027.63,
page_size=8579.46,
query="perspiciatis",
),
account_id="unde",
company_id="deserunt",
connection_id="porro",
order_by="nulla",
page=6027.63,
page_size=8579.46,
query="perspiciatis",
)

res = s.bank_account_transactions.get_bank_account_push_options(req)
Expand Down
5 changes: 3 additions & 2 deletions bankfeeds/files.gen
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
src/codat/bank_account_transactions.py
src/codat/bank_feed_accounts.py
src/codat/sdk.py
pylintrc
setup.py
src/codat/__init__.py
src/codat/models/__init__.py
src/codat/utils/__init__.py
src/codat/utils/retries.py
src/codat/utils/utils.py
src/codat/models/operations/get_bank_account_push_options.py
src/codat/models/operations/list_all_bank_transactionscount.py
src/codat/models/operations/list_bank_account_transactions.py
src/codat/models/operations/post_bank_transactions.py
src/codat/models/operations/create_bank_feed.py
src/codat/models/operations/get_bank_feeds.py
src/codat/models/operations/put_bank_feeds.py
src/codat/models/operations/update_bank_feed.py
src/codat/models/operations/__init__.py
src/codat/models/shared/security.py
Expand Down
6 changes: 3 additions & 3 deletions bankfeeds/gen.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
configVersion: 1.0.0
management:
docChecksum: 2850b50909854a03af955e915ac1f608
docChecksum: 5d482fdc77beeaca660224bb3f31b4ec
docVersion: 2.1.0
speakeasyVersion: 1.7.1
speakeasyVersion: 1.11.0
generation:
telemetryEnabled: false
sdkClassName: codat
sdkFlattening: true
python:
version: 0.1.1
version: 0.4.0
author: Speakeasy
description: Python Client SDK Generated by Speakeasy
packageName: codat-bankfeeds
Loading