Skip to content

Commit 31b2e52

Browse files
authored
Merge pull request #67 from apideck-libraries/speakeasy-sdk-regen-1758786484
chore: 🐝 Update SDK - Generate 0.23.0
2 parents 75c7085 + 24cdb98 commit 31b2e52

File tree

104 files changed

+5500
-142
lines changed

Some content is hidden

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

104 files changed

+5500
-142
lines changed

.speakeasy/gen.lock

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

.speakeasy/gen.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ generation:
2525
generateNewTests: false
2626
skipResponseBodyAssertions: false
2727
python:
28-
version: 0.22.1
28+
version: 0.23.0
2929
additionalDependencies:
3030
dev: {}
3131
main: {}
3232
allowedRedefinedBuiltins:
3333
- id
3434
- object
35+
asyncMode: both
3536
authors:
3637
- Speakeasy
3738
baseErrorName: ApideckError
@@ -55,6 +56,7 @@ python:
5556
shared: ""
5657
webhooks: ""
5758
inputModelSuffix: input
59+
legacyPyright: true
5860
maxMethodParams: 999
5961
methodArguments: infer-optional-args
6062
moduleName: ""

.speakeasy/workflow.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.622.1
1+
speakeasyVersion: 1.631.5
22
sources:
33
Apideck:
44
sourceNamespace: apideck
5-
sourceRevisionDigest: sha256:b89dfeac61b6af51fea1bff368bfcd5a23f74d793f66299c9aeeaa5063dbd460
6-
sourceBlobDigest: sha256:8c94ca80af7cb854257519a8bf08a7a060c73248058c63f17aca9cc5208673ba
5+
sourceRevisionDigest: sha256:0087c63890f3d406e9de4d6d1bc6009abcd5e97f21db723aa38c5c39b83a5f09
6+
sourceBlobDigest: sha256:69567c3d781e2d0d0c4cc1231a227c7fbb76820ad445cbad40c3ca56b3b4d0f5
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1757940178
10-
- 10.20.16
9+
- speakeasy-sdk-regen-1758786484
10+
- 10.21.2
1111
targets:
1212
apideck:
1313
source: Apideck
1414
sourceNamespace: apideck
15-
sourceRevisionDigest: sha256:b89dfeac61b6af51fea1bff368bfcd5a23f74d793f66299c9aeeaa5063dbd460
16-
sourceBlobDigest: sha256:8c94ca80af7cb854257519a8bf08a7a060c73248058c63f17aca9cc5208673ba
15+
sourceRevisionDigest: sha256:0087c63890f3d406e9de4d6d1bc6009abcd5e97f21db723aa38c5c39b83a5f09
16+
sourceBlobDigest: sha256:69567c3d781e2d0d0c4cc1231a227c7fbb76820ad445cbad40c3ca56b3b4d0f5
1717
codeSamplesNamespace: apideck-python-code-samples
18-
codeSamplesRevisionDigest: sha256:cb341d086c4574b622244fea504d29462dcbc772b1d63c39541b255c1d2e55bc
18+
codeSamplesRevisionDigest: sha256:2ca8dddbcde5a3c4a0fda1ab6b3c5ad020b527f2412ced0aca182340c9e431d8
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ with Apideck(
153153
</br>
154154

155155
The same SDK client can also be used to make asynchronous requests by importing asyncio.
156+
156157
```python
157158
# Asynchronous Example
158159
from apideck_unify import Apideck
@@ -389,6 +390,14 @@ with Apideck(
389390

390391
* [get](docs/sdks/profitandlosssdk/README.md#get) - Get Profit and Loss
391392

393+
#### [accounting.projects](docs/sdks/projects/README.md)
394+
395+
* [list](docs/sdks/projects/README.md#list) - List projects
396+
* [create](docs/sdks/projects/README.md#create) - Create project
397+
* [get](docs/sdks/projects/README.md#get) - Get project
398+
* [update](docs/sdks/projects/README.md#update) - Update project
399+
* [delete](docs/sdks/projects/README.md#delete) - Delete project
400+
392401
#### [accounting.purchase_orders](docs/sdks/purchaseorders/README.md)
393402

394403
* [list](docs/sdks/purchaseorders/README.md#list) - List Purchase Orders

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,14 @@ Based on:
468468
### Generated
469469
- [python v0.22.1] .
470470
### Releases
471-
- [PyPI v0.22.1] https://pypi.org/project/apideck-unify/0.22.1 - .
471+
- [PyPI v0.22.1] https://pypi.org/project/apideck-unify/0.22.1 - .
472+
473+
## 2025-10-01 07:48:37
474+
### Changes
475+
Based on:
476+
- OpenAPI Doc
477+
- Speakeasy CLI 1.631.5 (2.716.16) https://github.com/speakeasy-api/speakeasy
478+
### Generated
479+
- [python v0.23.0] .
480+
### Releases
481+
- [PyPI v0.23.0] https://pypi.org/project/apideck-unify/0.23.0 - .

USAGE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ with Apideck(
3030
</br>
3131

3232
The same SDK client can also be used to make asynchronous requests by importing asyncio.
33+
3334
```python
3435
# Asynchronous Example
3536
from apideck_unify import Apideck

docs/models/accountinginvoiceitemsallrequest.md

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/models/accountinginvoiceitemsonerequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
| `service_id` | *Optional[str]* | :heavy_minus_sign: | Provide the service id you want to call (e.g., pipedrive). Only needed when a consumer has activated multiple integrations for a Unified API. | salesforce |
1212
| `raw` | *Optional[bool]* | :heavy_minus_sign: | Include raw response. Mostly used for debugging purposes | |
1313
| `fields` | *OptionalNullable[str]* | :heavy_minus_sign: | The 'fields' parameter allows API users to specify the fields they want to include in the API response. If this parameter is not present, the API will return all available fields. If this parameter is present, only the fields specified in the comma-separated string will be included in the response. Nested properties can also be requested by using a dot notation. <br /><br />Example: `fields=name,email,addresses.city`<br /><br />In the example above, the response will only include the fields "name", "email" and "addresses.city". If any other fields are available, they will be excluded. | id,updated_at |
14-
| `filter_` | [Optional[models.InvoiceItemFilter]](../models/invoiceitemfilter.md) | :heavy_minus_sign: | Apply filters | {<br/>"type": "service"<br/>} |
14+
| `filter_` | [Optional[models.InvoiceItemFilter]](../models/invoiceitemfilter.md) | :heavy_minus_sign: | Apply filters | {<br/>"type": "service",<br/>"transaction_type": "purchase"<br/>} |

0 commit comments

Comments
 (0)