Skip to content

Commit 745e4a9

Browse files
github-actions[bot]speakeasybotspeakeasy-github[bot]
authored
chore: 🐝 Update SDK - Generate 0.31.1 (#147)
* ## Python SDK Changes Detected: * `apideck.accounting.journal_entries.list()`: `response.data.[].line_items.[].type` **Changed** **Breaking** ⚠️ * `apideck.accounting.journal_entries.get()`: `response.data.line_items.[].type` **Changed** **Breaking** ⚠️ * `apideck.accounting.journal_entries.create()`: * `request.line_items.[].type` **Changed** * `apideck.accounting.journal_entries.update()`: * `request.line_items.[].type` **Changed** * `apideck.accounting.employees.list()`: `response.data.[].bank_account` **Added** * `apideck.accounting.employees.create()`: `request.bank_account` **Added** * `apideck.accounting.employees.get()`: `response.data.bank_account` **Added** * `apideck.accounting.employees.update()`: `request.bank_account` **Added** * empty commit to trigger [run-tests] workflow --------- Co-authored-by: speakeasybot <bot@speakeasyapi.dev> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
1 parent e7348b8 commit 745e4a9

14 files changed

Lines changed: 123 additions & 40 deletions

.speakeasy/gen.lock

Lines changed: 19 additions & 19 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ generation:
3232
persistentEdits: {}
3333
versioningStrategy: automatic
3434
python:
35-
version: 0.31.0
35+
version: 0.31.1
3636
additionalDependencies:
3737
dev: {}
3838
main: {}

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ speakeasyVersion: 1.656.1
22
sources:
33
Apideck:
44
sourceNamespace: apideck
5-
sourceRevisionDigest: sha256:584d1829b6457c32d07327ce79fd3664f367f1031a5dc8c6107d0b9190ead29c
6-
sourceBlobDigest: sha256:91986d086b11f0335b5f711355f2158061c7a9ef64abd894cba554f55e3b460b
5+
sourceRevisionDigest: sha256:5eace38e98a0228ee4104e86aeb227c5abdaf0a2399b31fa6e927fbfea318f7d
6+
sourceBlobDigest: sha256:9e87bb6775697be9557863275c1c5c24f27f5669cfb2db00e45a77fe32a1a043
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1773169947
10-
- 10.24.3
9+
- speakeasy-sdk-regen-1773649621
10+
- 10.24.5
1111
targets:
1212
apideck:
1313
source: Apideck
1414
sourceNamespace: apideck
15-
sourceRevisionDigest: sha256:584d1829b6457c32d07327ce79fd3664f367f1031a5dc8c6107d0b9190ead29c
16-
sourceBlobDigest: sha256:91986d086b11f0335b5f711355f2158061c7a9ef64abd894cba554f55e3b460b
15+
sourceRevisionDigest: sha256:5eace38e98a0228ee4104e86aeb227c5abdaf0a2399b31fa6e927fbfea318f7d
16+
sourceBlobDigest: sha256:9e87bb6775697be9557863275c1c5c24f27f5669cfb2db00e45a77fe32a1a043
1717
codeSamplesNamespace: apideck-python-code-samples
18-
codeSamplesRevisionDigest: sha256:e7de874e7b95f2875a3a021bfc3aa5f56281344aa3d9688923a35be9e085d43f
18+
codeSamplesRevisionDigest: sha256:9654953b382900a7178bc88cd0544225970778a5790102f07e5bb22462384bea
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,4 +1068,14 @@ Based on:
10681068
### Generated
10691069
- [python v0.31.0] .
10701070
### Releases
1071-
- [PyPI v0.31.0] https://pypi.org/project/apideck-unify/0.31.0 - .
1071+
- [PyPI v0.31.0] https://pypi.org/project/apideck-unify/0.31.0 - .
1072+
1073+
## 2026-03-18 05:17:48
1074+
### Changes
1075+
Based on:
1076+
- OpenAPI Doc
1077+
- Speakeasy CLI 1.656.1 (2.753.1) https://github.com/speakeasy-api/speakeasy
1078+
### Generated
1079+
- [python v0.31.1] .
1080+
### Releases
1081+
- [PyPI v0.31.1] https://pypi.org/project/apideck-unify/0.31.1 - .

docs/models/accountingemployee.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
| `notes` | *OptionalNullable[str]* | :heavy_minus_sign: | Notes about the employee. | Some notes about this employee |
3030
| `addresses` | List[[models.Address](../models/address.md)] | :heavy_minus_sign: | Addresses of the employee. | |
3131
| `phone_numbers` | List[[models.PhoneNumber](../models/phonenumber.md)] | :heavy_minus_sign: | Phone numbers of the employee. | |
32+
| `bank_account` | [Optional[models.BankAccount]](../models/bankaccount.md) | :heavy_minus_sign: | N/A | |
3233
| `custom_fields` | List[[models.CustomField](../models/customfield.md)] | :heavy_minus_sign: | N/A | |
3334
| `custom_mappings` | Dict[str, *Any*] | :heavy_minus_sign: | When custom mappings are configured on the resource, the result is included here. | |
3435
| `row_version` | *OptionalNullable[str]* | :heavy_minus_sign: | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | 1-12345 |

docs/models/accountingemployeeinput.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
| `notes` | *OptionalNullable[str]* | :heavy_minus_sign: | Notes about the employee. | Some notes about this employee |
2828
| `addresses` | List[[models.Address](../models/address.md)] | :heavy_minus_sign: | Addresses of the employee. | |
2929
| `phone_numbers` | List[[models.PhoneNumber](../models/phonenumber.md)] | :heavy_minus_sign: | Phone numbers of the employee. | |
30+
| `bank_account` | [Optional[models.BankAccount]](../models/bankaccount.md) | :heavy_minus_sign: | N/A | |
3031
| `custom_fields` | List[[models.CustomField](../models/customfield.md)] | :heavy_minus_sign: | N/A | |
3132
| `row_version` | *OptionalNullable[str]* | :heavy_minus_sign: | A binary value used to detect updates to a object and prevent data conflicts. It is incremented each time an update is made to the object. | 1-12345 |
3233
| `pass_through` | List[[models.PassThroughBody](../models/passthroughbody.md)] | :heavy_minus_sign: | The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. | |

docs/models/journalentrylineitem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
| `tax_amount` | *OptionalNullable[float]* | :heavy_minus_sign: | Tax amount | 27500 |
1111
| `sub_total` | *OptionalNullable[float]* | :heavy_minus_sign: | Sub-total amount, normally before tax. | 27500 |
1212
| `total_amount` | *OptionalNullable[float]* | :heavy_minus_sign: | Debit entries are considered positive, and credit entries are considered negative. | 27500 |
13-
| `type` | [models.JournalEntryLineItemType](../models/journalentrylineitemtype.md) | :heavy_check_mark: | Debit entries are considered positive, and credit entries are considered negative. | debit |
13+
| `type` | [Nullable[models.JournalEntryLineItemType]](../models/journalentrylineitemtype.md) | :heavy_check_mark: | Debit entries are considered positive, and credit entries are considered negative. | debit |
1414
| `tax_rate` | [Optional[models.LinkedTaxRate]](../models/linkedtaxrate.md) | :heavy_minus_sign: | N/A | |
1515
| ~~`tracking_category`~~ | [OptionalNullable[models.DeprecatedLinkedTrackingCategory]](../models/deprecatedlinkedtrackingcategory.md) | :heavy_minus_sign: | : warning: ** DEPRECATED **: This field is deprecated and may be removed in a future version.. | |
1616
| `tracking_categories` | List[[Nullable[models.LinkedTrackingCategory]](../models/linkedtrackingcategory.md)] | :heavy_minus_sign: | A list of linked tracking categories. | |

0 commit comments

Comments
 (0)