Skip to content

Commit e3819ad

Browse files
authored
Merge pull request #76 from codatio/speakeasy-sdk-regen-1680739834
chore: speakeasy sdk regeneration - Generate Accounting SDK
2 parents 522414b + 9a66f3a commit e3819ad

File tree

349 files changed

+2780
-970
lines changed

Some content is hidden

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

349 files changed

+2780
-970
lines changed

accounting/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ pip install codat-accounting
1414
## SDK Example Usage
1515
<!-- Start SDK Example Usage -->
1616
```python
17-
import codat
18-
from codat.models import operations, shared
17+
import codataccounting
18+
from codataccounting.models import operations, shared
1919

20-
s = codat.Codat(
20+
s = codataccounting.CodatAccounting(
2121
security=shared.Security(
2222
auth_header="YOUR_API_KEY_HERE",
2323
),
@@ -154,6 +154,7 @@ if res.account_transaction is not None:
154154

155155
* `download_invoice_pdf` - Get invoice as PDF
156156
* `create_invoice` - Create invoice
157+
* `delete_invoice` - Delete invoice
157158
* `download_invoice_attachment` - Download invoice attachment
158159
* `get_create_update_invoices_model` - Get create/update invoice model
159160
* `get_invoice` - Get invoice
@@ -173,6 +174,7 @@ if res.account_transaction is not None:
173174
### journal_entries
174175

175176
* `create_journal_entry` - Create journal entry
177+
* `delete_journal_entry` - Delete journal entry
176178
* `get_create_journal_entries_model` - Get create journal entry model
177179
* `get_journal_entry` - Get journal entry
178180
* `list_journal_entries` - List journal entries

accounting/RELEASES.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,36 @@ Based on:
214214
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
215215
- Speakeasy CLI 1.19.3 (2.16.7) https://github.com/speakeasy-api/speakeasy
216216
### Releases
217-
- [PyPI v0.9.6] https://pypi.org/project/codat-accounting/0.9.6 - accounting
217+
- [PyPI v0.9.6] https://pypi.org/project/codat-accounting/0.9.6 - accounting
218+
219+
## 2023-04-06 00:10:31
220+
### Changes
221+
Based on:
222+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
223+
- Speakeasy CLI 1.19.6 (2.17.8) https://github.com/speakeasy-api/speakeasy
224+
### Releases
225+
- [PyPI v0.10.0] https://pypi.org/project/codat-accounting/0.10.0 - accounting
226+
227+
## 2023-04-12 00:10:00
228+
### Changes
229+
Based on:
230+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
231+
- Speakeasy CLI 1.19.7 (2.17.9) https://github.com/speakeasy-api/speakeasy
232+
### Releases
233+
- [PyPI v0.10.1] https://pypi.org/project/codat-accounting/0.10.1 - accounting
234+
235+
## 2023-04-14 00:10:04
236+
### Changes
237+
Based on:
238+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
239+
- Speakeasy CLI 1.20.0 (2.18.0) https://github.com/speakeasy-api/speakeasy
240+
### Releases
241+
- [PyPI v0.11.0] https://pypi.org/project/codat-accounting/0.11.0 - accounting
242+
243+
## 2023-04-18 00:10:46
244+
### Changes
245+
Based on:
246+
- OpenAPI Doc 2.1.0 https://raw.githubusercontent.com/codatio/oas/main/yaml/Codat-Accounting.yaml
247+
- Speakeasy CLI 1.20.1 (2.18.1) https://github.com/speakeasy-api/speakeasy
248+
### Releases
249+
- [PyPI v0.11.1] https://pypi.org/project/codat-accounting/0.11.1 - accounting

accounting/USAGE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- Start SDK Example Usage -->
22
```python
3-
import codat
4-
from codat.models import operations, shared
3+
import codataccounting
4+
from codataccounting.models import operations, shared
55

6-
s = codat.Codat(
6+
s = codataccounting.CodatAccounting(
77
security=shared.Security(
88
auth_header="YOUR_API_KEY_HERE",
99
),

0 commit comments

Comments
 (0)