Skip to content

Commit 1e875f1

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

Some content is hidden

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

55 files changed

+348
-444
lines changed

previous-versions/sync-for-expenses-version-1/README.md

Lines changed: 77 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,89 @@
33

44

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

913
## Example Usage
1014
<!-- Start SDK Example Usage -->
11-
replace me
15+
16+
17+
```python
18+
import codatsyncexpenses
19+
from codatsyncexpenses.models import shared
20+
21+
s = codatsyncexpenses.CodatSyncExpenses(
22+
security=shared.Security(
23+
auth_header="Basic BASE_64_ENCODED(API_KEY)",
24+
),
25+
)
26+
27+
req = shared.CompanyRequestBody(
28+
description='Requested early access to the new financing scheme.',
29+
name='Bank of Dave',
30+
)
31+
32+
res = s.companies.create_company(req)
33+
34+
if res.company is not None:
35+
# handle response
36+
```
1237
<!-- End SDK Example Usage -->
1338

1439
<!-- Start SDK Available Operations -->
15-
replace me
40+
## Available Resources and Operations
41+
42+
43+
### [companies](docs/sdks/companies/README.md)
44+
45+
* [create_company](docs/sdks/companies/README.md#create_company) - Create company
46+
* [delete_company](docs/sdks/companies/README.md#delete_company) - Delete a company
47+
* [get_company](docs/sdks/companies/README.md#get_company) - Get company
48+
* [list_companies](docs/sdks/companies/README.md#list_companies) - List companies
49+
* [update_company](docs/sdks/companies/README.md#update_company) - Update company
50+
51+
### [configuration](docs/sdks/configuration/README.md)
52+
53+
* [get_company_configuration](docs/sdks/configuration/README.md#get_company_configuration) - Get company configuration
54+
* [save_company_configuration](docs/sdks/configuration/README.md#save_company_configuration) - Set company configuration
55+
56+
### [connections](docs/sdks/connections/README.md)
57+
58+
* [create_connection](docs/sdks/connections/README.md#create_connection) - Create connection
59+
* [create_partner_expense_connection](docs/sdks/connections/README.md#create_partner_expense_connection) - Create Partner Expense connection
60+
* [delete_connection](docs/sdks/connections/README.md#delete_connection) - Delete connection
61+
* [get_connection](docs/sdks/connections/README.md#get_connection) - Get connection
62+
* [list_connections](docs/sdks/connections/README.md#list_connections) - List connections
63+
* [unlink](docs/sdks/connections/README.md#unlink) - Unlink connection
64+
65+
### [expenses](docs/sdks/expenses/README.md)
66+
67+
* [create_expense_dataset](docs/sdks/expenses/README.md#create_expense_dataset) - Create expense-transactions
68+
* [update_expense_dataset](docs/sdks/expenses/README.md#update_expense_dataset) - Update expense-transactions
69+
* [upload_attachment](docs/sdks/expenses/README.md#upload_attachment) - Upload attachment
70+
71+
### [mapping_options](docs/sdks/mappingoptions/README.md)
72+
73+
* [get_mapping_options](docs/sdks/mappingoptions/README.md#get_mapping_options) - Mapping options
74+
75+
### [sync](docs/sdks/sync/README.md)
76+
77+
* [initiate_sync](docs/sdks/sync/README.md#initiate_sync) - Initiate sync
78+
79+
### [sync_status](docs/sdks/syncstatus/README.md)
80+
81+
* [get_last_successful_sync](docs/sdks/syncstatus/README.md#get_last_successful_sync) - Last successful sync
82+
* [get_latest_sync](docs/sdks/syncstatus/README.md#get_latest_sync) - Latest sync status
83+
* [get_sync_by_id](docs/sdks/syncstatus/README.md#get_sync_by_id) - Get Sync status
84+
* [list_syncs](docs/sdks/syncstatus/README.md#list_syncs) - List sync statuses
85+
86+
### [transaction_status](docs/sdks/transactionstatus/README.md)
87+
88+
* [get_sync_transaction](docs/sdks/transactionstatus/README.md#get_sync_transaction) - Get Sync Transaction
89+
* [list_sync_transactions](docs/sdks/transactionstatus/README.md#list_sync_transactions) - Get Sync transactions
1690
<!-- End SDK Available Operations -->
1791
### Library generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)

previous-versions/sync-for-expenses-version-1/RELEASES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,14 @@ Based on:
88
### Generated
99
- [python v0.1.0] previous-versions/sync-for-expenses-version-1
1010
### Releases
11+
- [PyPI v0.1.0] https://pypi.org/project/codat-sync-for-expenses-version-1/0.1.0 - previous-versions/sync-for-expenses-version-1
12+
13+
## 2023-09-13 11:30:16
14+
### Changes
15+
Based on:
16+
- OpenAPI Doc prealpha https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Sync-Expenses-v1.yaml
17+
- Speakeasy CLI 1.82.5 (2.108.3) https://github.com/speakeasy-api/speakeasy
18+
### Generated
19+
- [python v0.1.0] previous-versions/sync-for-expenses-version-1
20+
### Releases
1121
- [PyPI v0.1.0] https://pypi.org/project/codat-sync-for-expenses-version-1/0.1.0 - previous-versions/sync-for-expenses-version-1

previous-versions/sync-for-expenses-version-1/docs/models/operations/intiatesyncrequest.md renamed to previous-versions/sync-for-expenses-version-1/docs/models/operations/initiatesyncrequest.md

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

33

44
## Fields

previous-versions/sync-for-expenses-version-1/docs/models/operations/intiatesyncresponse.md renamed to previous-versions/sync-for-expenses-version-1/docs/models/operations/initiatesyncresponse.md

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

33

44
## Fields

previous-versions/sync-for-expenses-version-1/docs/models/operations/unlinkconnectionrequest.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-
| `request_body` | [Optional[UnlinkConnectionRequestBody]](../../models/operations/unlinkconnectionrequestbody.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[UnlinkConnectionUpdateConnection]](../../models/operations/unlinkconnectionupdateconnection.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 |

previous-versions/sync-for-expenses-version-1/docs/models/operations/unlinkconnectionrequestbody.md

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# UnlinkConnectionUpdateConnection
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
8+
| `status` | [Optional[shared.DataConnectionStatus]](../../models/shared/dataconnectionstatus.md) | :heavy_minus_sign: | The current authorization status of the data connection. |

previous-versions/sync-for-expenses-version-1/docs/models/shared/attachment.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Attachment
22

3-
OK
4-
53

64
## Fields
75

previous-versions/sync-for-expenses-version-1/docs/models/shared/companies.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Companies
22

3-
OK
4-
53

64
## Fields
75

previous-versions/sync-for-expenses-version-1/docs/models/shared/companyconfiguration.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# CompanyConfiguration
22

3-
Success
4-
53

64
## Fields
75

0 commit comments

Comments
 (0)