Skip to content

Commit

Permalink
Merge pull request #362 from codatio/speakeasy-sdk-regen-1695245491
Browse files Browse the repository at this point in the history
chore: speakeasy sdk regeneration - Generate Lending library
  • Loading branch information
dcoplowe authored Sep 20, 2023
2 parents 9de6ecc + 83583e0 commit 11f45d7
Show file tree
Hide file tree
Showing 129 changed files with 4,242 additions and 72 deletions.
36 changes: 36 additions & 0 deletions lending/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,42 @@ if res.accounting_bank_transactions is not None:
* [get](docs/sdks/financialstatementsprofitandloss/README.md#get) - Get profit and loss
* [get_categorized_accounts](docs/sdks/financialstatementsprofitandloss/README.md#get_categorized_accounts) - Get categorized profit and loss statement


### [LoanWriteback.Accounts](docs/sdks/loanwritebackaccounts/README.md)

* [create](docs/sdks/loanwritebackaccounts/README.md#create) - Create account
* [get_create_model](docs/sdks/loanwritebackaccounts/README.md#get_create_model) - Get create account model

### [LoanWriteback.BankAccounts](docs/sdks/loanwritebackbankaccounts/README.md)

* [create](docs/sdks/loanwritebackbankaccounts/README.md#create) - Create bank account
* [get_create_update_model](docs/sdks/loanwritebackbankaccounts/README.md#get_create_update_model) - Get create/update bank account model

### [LoanWriteback.BankTransactions](docs/sdks/loanwritebackbanktransactions/README.md)

* [create](docs/sdks/loanwritebackbanktransactions/README.md#create) - Create bank account transactions
* [get_create_model](docs/sdks/loanwritebackbanktransactions/README.md#get_create_model) - Get create bank account transactions model

### [LoanWriteback.CreateOperations](docs/sdks/loanwritebackcreateoperations/README.md)

* [get](docs/sdks/loanwritebackcreateoperations/README.md#get) - Get create operation
* [list](docs/sdks/loanwritebackcreateoperations/README.md#list) - List create operations

### [LoanWriteback.DirectCosts](docs/sdks/loanwritebackdirectcosts/README.md)

* [create](docs/sdks/loanwritebackdirectcosts/README.md#create) - Create direct cost
* [get_create_model](docs/sdks/loanwritebackdirectcosts/README.md#get_create_model) - Get create direct cost model

### [LoanWriteback.Suppliers](docs/sdks/loanwritebacksuppliers/README.md)

* [create](docs/sdks/loanwritebacksuppliers/README.md#create) - Create supplier
* [get_create_update_model](docs/sdks/loanwritebacksuppliers/README.md#get_create_update_model) - Get create/update supplier model

### [LoanWriteback.Transfers](docs/sdks/loanwritebacktransfers/README.md)

* [create](docs/sdks/loanwritebacktransfers/README.md#create) - Create transfer
* [get_create_model](docs/sdks/loanwritebacktransfers/README.md#get_create_model) - Get create transfer model

### [ManageData](docs/sdks/managedata/README.md)

* [get_status](docs/sdks/managedata/README.md#get_status) - Get data status
Expand Down
12 changes: 11 additions & 1 deletion lending/RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@ Based on:
### Generated
- [python v4.1.0] lending
### Releases
- [PyPI v4.1.0] https://pypi.org/project/codat-lending/4.1.0 - lending
- [PyPI v4.1.0] https://pypi.org/project/codat-lending/4.1.0 - lending

## 2023-09-20 21:31:27
### Changes
Based on:
- OpenAPI Doc 3.0.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Lending.yaml
- Speakeasy CLI 1.88.1 (2.122.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v4.2.0] lending
### Releases
- [PyPI v4.2.0] https://pypi.org/project/codat-lending/4.2.0 - lending
13 changes: 13 additions & 0 deletions lending/docs/models/operations/createaccountrequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CreateAccountRequest


## Fields

| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `accounting_account` | [Optional[shared.AccountingAccount]](../../models/shared/accountingaccount.md) | :heavy_minus_sign: | N/A | |
| `allow_sync_on_push_complete` | *Optional[bool]* | :heavy_minus_sign: | N/A | |
| `company_id` | *str* | :heavy_check_mark: | N/A | 8a210b68-6988-11ed-a1eb-0242ac120002 |
| `connection_id` | *str* | :heavy_check_mark: | N/A | 2e9d2c44-f675-40ba-8049-353bfcb5e171 |
| `force_update` | *Optional[bool]* | :heavy_minus_sign: | When updating data in the destination platform Codat checks the `sourceModifiedDate` against the `lastupdated` date from the accounting platform, if they're different Codat will return an error suggesting you should initiate another pull of the data. If this is set to `true` then the update will override this check. | |
| `timeout_in_minutes` | *Optional[int]* | :heavy_minus_sign: | N/A | |
12 changes: 12 additions & 0 deletions lending/docs/models/operations/createaccountresponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# CreateAccountResponse


## Fields

| Field | Type | Required | Description |
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| `accounting_create_account_response` | [Optional[shared.AccountingCreateAccountResponse]](../../models/shared/accountingcreateaccountresponse.md) | :heavy_minus_sign: | Success |
| `content_type` | *str* | :heavy_check_mark: | N/A |
| `error_message` | [Optional[shared.ErrorMessage]](../../models/shared/errormessage.md) | :heavy_minus_sign: | The request made is not valid. |
| `status_code` | *int* | :heavy_check_mark: | N/A |
| `raw_response` | [requests.Response](https://requests.readthedocs.io/en/latest/api/#requests.Response) | :heavy_minus_sign: | N/A |
Loading

0 comments on commit 11f45d7

Please sign in to comment.