Skip to content

Commit ccb5392

Browse files
committed
ci: regenerated with OpenAPI Doc 3.0.0, Speakeay CLI 1.82.5
1 parent c7f0df6 commit ccb5392

File tree

65 files changed

+586
-334
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+586
-334
lines changed

bank-feeds/README.md

Lines changed: 70 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,82 @@
33
Bank Feeds API enables your SMB users to set up bank feeds from accounts in your application to supported accounting platforms.
44

55
<!-- Start SDK Installation -->
6-
replace me
6+
## SDK Installation
7+
8+
```bash
9+
pip install codat-bankfeeds
10+
```
711
<!-- End SDK Installation -->
812

913
## Example Usage
1014
<!-- Start SDK Example Usage -->
11-
replace me
15+
16+
17+
```python
18+
import codatbankfeeds
19+
from codatbankfeeds.models import operations, shared
20+
21+
s = codatbankfeeds.CodatBankFeeds(
22+
security=shared.Security(
23+
auth_header="Basic BASE_64_ENCODED(API_KEY)",
24+
),
25+
)
26+
27+
req = operations.CreateBankAccountMappingRequest(
28+
request_body=operations.CreateBankAccountMappingBankFeedAccountMapping(
29+
feed_start_date='2022-10-23T00:00:00.000Z',
30+
source_account_id='provident',
31+
target_account_id='distinctio',
32+
),
33+
company_id='8a210b68-6988-11ed-a1eb-0242ac120002',
34+
connection_id='2e9d2c44-f675-40ba-8049-353bfcb5e171',
35+
)
36+
37+
res = s.account_mapping.create(req)
38+
39+
if res.bank_feed_account_mapping_response is not None:
40+
# handle response
41+
```
1242
<!-- End SDK Example Usage -->
1343

1444
<!-- Start SDK Available Operations -->
15-
replace me
45+
## Available Resources and Operations
46+
47+
48+
### [account_mapping](docs/sdks/accountmapping/README.md)
49+
50+
* [create](docs/sdks/accountmapping/README.md#create) - Create bank feed account mapping
51+
* [get](docs/sdks/accountmapping/README.md#get) - List bank feed account mappings
52+
53+
### [companies](docs/sdks/companies/README.md)
54+
55+
* [create](docs/sdks/companies/README.md#create) - Create company
56+
* [delete](docs/sdks/companies/README.md#delete) - Delete a company
57+
* [get](docs/sdks/companies/README.md#get) - Get company
58+
* [list](docs/sdks/companies/README.md#list) - List companies
59+
* [update](docs/sdks/companies/README.md#update) - Update company
60+
61+
### [connections](docs/sdks/connections/README.md)
62+
63+
* [create](docs/sdks/connections/README.md#create) - Create connection
64+
* [delete](docs/sdks/connections/README.md#delete) - Delete connection
65+
* [get](docs/sdks/connections/README.md#get) - Get connection
66+
* [list](docs/sdks/connections/README.md#list) - List connections
67+
* [unlink](docs/sdks/connections/README.md#unlink) - Unlink connection
68+
69+
### [source_accounts](docs/sdks/sourceaccounts/README.md)
70+
71+
* [create](docs/sdks/sourceaccounts/README.md#create) - Create source account
72+
* [delete](docs/sdks/sourceaccounts/README.md#delete) - Delete source account
73+
* [delete_credentials](docs/sdks/sourceaccounts/README.md#delete_credentials) - Delete all source account credentials
74+
* [generate_credentials](docs/sdks/sourceaccounts/README.md#generate_credentials) - Generate source account credentials
75+
* [list](docs/sdks/sourceaccounts/README.md#list) - List source accounts
76+
* [update](docs/sdks/sourceaccounts/README.md#update) - Update source account
77+
78+
### [transactions](docs/sdks/transactions/README.md)
79+
80+
* [create](docs/sdks/transactions/README.md#create) - Create bank transactions
81+
* [get_create_operation](docs/sdks/transactions/README.md#get_create_operation) - Get create operation
82+
* [list_create_operations](docs/sdks/transactions/README.md#list_create_operations) - List create operations
1683
<!-- End SDK Available Operations -->
1784
### Library generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)

bank-feeds/RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,4 +698,14 @@ Based on:
698698
### Generated
699699
- [python v0.35.0] bank-feeds
700700
### Releases
701-
- [PyPI v0.35.0] https://pypi.org/project/codat-bankfeeds/0.35.0 - bank-feeds
701+
- [PyPI v0.35.0] https://pypi.org/project/codat-bankfeeds/0.35.0 - bank-feeds
702+
703+
## 2023-09-13 11:12:32
704+
### Changes
705+
Based on:
706+
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Bank-Feeds.yaml
707+
- Speakeasy CLI 1.82.5 (2.108.3) https://github.com/speakeasy-api/speakeasy
708+
### Generated
709+
- [python v2.0.0] bank-feeds
710+
### Releases
711+
- [PyPI v2.0.0] https://pypi.org/project/codat-bankfeeds/2.0.0 - bank-feeds

bank-feeds/USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ s = codatbankfeeds.CodatBankFeeds(
1212
)
1313

1414
req = operations.CreateBankAccountMappingRequest(
15-
bank_feed_account_mapping=shared.BankFeedAccountMapping(
15+
request_body=operations.CreateBankAccountMappingBankFeedAccountMapping(
1616
feed_start_date='2022-10-23T00:00:00.000Z',
1717
source_account_id='provident',
1818
target_account_id='distinctio',

bank-feeds/docs/models/shared/bankfeedaccountmapping.md renamed to bank-feeds/docs/models/operations/createbankaccountmappingbankfeedaccountmapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# BankFeedAccountMapping
1+
# CreateBankAccountMappingBankFeedAccountMapping
22

33
A bank feed connection between a source account and a target account.
44

bank-feeds/docs/models/operations/createbankaccountmappingrequest.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
## Fields
55

6-
| Field | Type | Required | Description | Example |
7-
| ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
8-
| `bank_feed_account_mapping` | [Optional[shared.BankFeedAccountMapping]](../../models/shared/bankfeedaccountmapping.md) | :heavy_minus_sign: | N/A | |
9-
| `company_id` | *str* | :heavy_check_mark: | N/A | 8a210b68-6988-11ed-a1eb-0242ac120002 |
10-
| `connection_id` | *str* | :heavy_check_mark: | N/A | 2e9d2c44-f675-40ba-8049-353bfcb5e171 |
6+
| Field | Type | Required | Description | Example |
7+
| ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
8+
| `request_body` | [Optional[CreateBankAccountMappingBankFeedAccountMapping]](../../models/operations/createbankaccountmappingbankfeedaccountmapping.md) | :heavy_minus_sign: | N/A | |
9+
| `company_id` | *str* | :heavy_check_mark: | N/A | 8a210b68-6988-11ed-a1eb-0242ac120002 |
10+
| `connection_id` | *str* | :heavy_check_mark: | N/A | 2e9d2c44-f675-40ba-8049-353bfcb5e171 |

bank-feeds/docs/models/operations/createbankfeedrequest.md

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CreateSourceAccountRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- |
8+
| `source_account` | [Optional[shared.SourceAccount]](../../models/shared/sourceaccount.md) | :heavy_minus_sign: | N/A | |
9+
| `company_id` | *str* | :heavy_check_mark: | N/A | 8a210b68-6988-11ed-a1eb-0242ac120002 |
10+
| `connection_id` | *str* | :heavy_check_mark: | N/A | 2e9d2c44-f675-40ba-8049-353bfcb5e171 |

bank-feeds/docs/models/operations/createbankfeedresponse.md renamed to bank-feeds/docs/models/operations/createsourceaccountresponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# CreateBankFeedResponse
1+
# CreateSourceAccountResponse
22

33

44
## Fields
55

66
| Field | Type | Required | Description |
77
| ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
8-
| `bank_feed_account` | [Optional[shared.BankFeedAccount]](../../models/shared/bankfeedaccount.md) | :heavy_minus_sign: | Success |
98
| `content_type` | *str* | :heavy_check_mark: | N/A |
109
| `error_message` | [Optional[shared.ErrorMessage]](../../models/shared/errormessage.md) | :heavy_minus_sign: | The request made is not valid. |
10+
| `source_account` | [Optional[shared.SourceAccount]](../../models/shared/sourceaccount.md) | :heavy_minus_sign: | Success |
1111
| `status_code` | *int* | :heavy_check_mark: | N/A |
1212
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |

bank-feeds/docs/models/operations/deletebankfeedbankaccountrequest.md renamed to bank-feeds/docs/models/operations/deletesourceaccountrequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeleteBankFeedBankAccountRequest
1+
# DeleteSourceAccountRequest
22

33

44
## Fields

bank-feeds/docs/models/operations/deletebankfeedbankaccountresponse.md renamed to bank-feeds/docs/models/operations/deletesourceaccountresponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeleteBankFeedBankAccountResponse
1+
# DeleteSourceAccountResponse
22

33

44
## Fields

0 commit comments

Comments
 (0)