Skip to content

Commit 7f12e68

Browse files
authored
Merge pull request #5 from apideck-libraries/speakeasy-sdk-regen-1743512939
chore: 🐝 Update SDK - Generate 0.10.0
2 parents 062b76b + 54e264b commit 7f12e68

File tree

386 files changed

+38410
-134
lines changed

Some content is hidden

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

386 files changed

+38410
-134
lines changed

.speakeasy/workflow.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
speakeasyVersion: 1.523.2
1+
speakeasyVersion: 1.526.6
22
sources:
33
accounting:
44
sourceNamespace: apideck-accounting-only-oas
5-
sourceRevisionDigest: sha256:56f817619ba615301852d6a0a8f2351bfad3de3b42ad3ebaf6af8ec12ed21193
6-
sourceBlobDigest: sha256:6d730e4fc04f1f82cc3401f99edab1f888d699a469e32a9ad951a53be8913b0e
5+
sourceRevisionDigest: sha256:95ccb85226f80edb58123936e1dab78b566d493595afd00b1d206ec4f012cde0
6+
sourceBlobDigest: sha256:8e17e0fd65fc4724f830a9ee87778bf29c2588e2a58515faeb5d16431df21432
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1743006270
10-
- 10.12.4
9+
- speakeasy-sdk-regen-1743512939
10+
- 10.14.0
1111
lending:
1212
sourceNamespace: lending
1313
sourceRevisionDigest: sha256:178885971cf1c04155e742359cad4b10d0eba3a8d7de8e7a64d2e33a0678995d
@@ -19,10 +19,10 @@ targets:
1919
accounting-py:
2020
source: accounting
2121
sourceNamespace: apideck-accounting-only-oas
22-
sourceRevisionDigest: sha256:56f817619ba615301852d6a0a8f2351bfad3de3b42ad3ebaf6af8ec12ed21193
23-
sourceBlobDigest: sha256:6d730e4fc04f1f82cc3401f99edab1f888d699a469e32a9ad951a53be8913b0e
22+
sourceRevisionDigest: sha256:95ccb85226f80edb58123936e1dab78b566d493595afd00b1d206ec4f012cde0
23+
sourceBlobDigest: sha256:8e17e0fd65fc4724f830a9ee87778bf29c2588e2a58515faeb5d16431df21432
2424
codeSamplesNamespace: apideck-accounting-only-oas-python-code-samples
25-
codeSamplesRevisionDigest: sha256:f8875db073876970fbaf5611c0a0867c5e614f5e4f29233c25a8004dd29717fc
25+
codeSamplesRevisionDigest: sha256:334b4bebbf87648eeed29205ec6213a8e3fecece38e68c2b55724ecd894e3293
2626
accounting-ts:
2727
source: accounting
2828
sourceNamespace: accounting

accounting/.speakeasy/gen.lock

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

accounting/.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ generation:
1818
oAuth2ClientCredentialsEnabled: true
1919
oAuth2PasswordEnabled: true
2020
python:
21-
version: 0.9.3
21+
version: 0.10.0
2222
additionalDependencies:
2323
dev: {}
2424
main: {}

accounting/README-PYPI.md

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

accounting/README.md

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

accounting/RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,14 @@ Based on:
88
### Generated
99
- [python v0.9.3] accounting
1010
### Releases
11-
- [PyPI v0.9.3] https://pypi.org/project/apideck-accounting-unify/0.9.3 - accounting
11+
- [PyPI v0.9.3] https://pypi.org/project/apideck-accounting-unify/0.9.3 - accounting
12+
13+
## 2025-04-01 13:08:43
14+
### Changes
15+
Based on:
16+
- OpenAPI Doc
17+
- Speakeasy CLI 1.526.6 (2.563.1) https://github.com/speakeasy-api/speakeasy
18+
### Generated
19+
- [python v0.10.0] accounting
20+
### Releases
21+
- [PyPI v0.10.0] https://pypi.org/project/apideck-accounting-unify/0.10.0 - accounting

accounting/USAGE.md

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,20 @@ with Apideck(
1111
app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
1212
) as apideck:
1313

14-
res = apideck.accounting.tax_rates.get(id="<id>", consumer_id="test-consumer", app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX", service_id="salesforce", fields="id,updated_at")
14+
res = apideck.accounting.tax_rates.list(consumer_id="test-consumer", app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX", service_id="salesforce", filter_={
15+
"assets": True,
16+
"equity": True,
17+
"expenses": True,
18+
"liabilities": True,
19+
"revenue": True,
20+
}, pass_through={
21+
"search": "San Francisco",
22+
}, fields="id,updated_at")
1523

16-
assert res.get_tax_rate_response is not None
24+
while res is not None:
25+
# Handle items
1726

18-
# Handle response
19-
print(res.get_tax_rate_response)
27+
res = res.next()
2028
```
2129

2230
</br>
@@ -36,12 +44,20 @@ async def main():
3644
app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX",
3745
) as apideck:
3846

39-
res = await apideck.accounting.tax_rates.get_async(id="<id>", consumer_id="test-consumer", app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX", service_id="salesforce", fields="id,updated_at")
47+
res = await apideck.accounting.tax_rates.list_async(consumer_id="test-consumer", app_id="dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX", service_id="salesforce", filter_={
48+
"assets": True,
49+
"equity": True,
50+
"expenses": True,
51+
"liabilities": True,
52+
"revenue": True,
53+
}, pass_through={
54+
"search": "San Francisco",
55+
}, fields="id,updated_at")
4056

41-
assert res.get_tax_rate_response is not None
57+
while res is not None:
58+
# Handle items
4259

43-
# Handle response
44-
print(res.get_tax_rate_response)
60+
res = res.next()
4561

4662
asyncio.run(main())
4763
```
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# AccountingBillPaymentsAddGlobals
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- |
8+
| `consumer_id` | *Optional[str]* | :heavy_minus_sign: | ID of the consumer which you want to get or push data from | test-consumer |
9+
| `app_id` | *Optional[str]* | :heavy_minus_sign: | The ID of your Unify application | dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX |
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# AccountingBillPaymentsAddRequest
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
8+
| `bill_payment` | [models.BillPaymentInput](../models/billpaymentinput.md) | :heavy_check_mark: | N/A | |
9+
| `raw` | *Optional[bool]* | :heavy_minus_sign: | Include raw response. Mostly used for debugging purposes | |
10+
| `consumer_id` | *Optional[str]* | :heavy_minus_sign: | ID of the consumer which you want to get or push data from | test-consumer |
11+
| `app_id` | *Optional[str]* | :heavy_minus_sign: | The ID of your Unify application | dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX |
12+
| `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 |
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AccountingBillPaymentsAddResponse
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description |
7+
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
8+
| `http_meta` | [models.HTTPMetadata](../models/httpmetadata.md) | :heavy_check_mark: | N/A |
9+
| `create_bill_payment_response` | [Optional[models.CreateBillPaymentResponse]](../models/createbillpaymentresponse.md) | :heavy_minus_sign: | Bill Payment created |
10+
| `unexpected_error_response` | [Optional[models.UnexpectedErrorResponse]](../models/unexpectederrorresponse.md) | :heavy_minus_sign: | Unexpected error |
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# AccountingBillPaymentsAllGlobals
2+
3+
4+
## Fields
5+
6+
| Field | Type | Required | Description | Example |
7+
| ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- | ---------------------------------------------------------- |
8+
| `consumer_id` | *Optional[str]* | :heavy_minus_sign: | ID of the consumer which you want to get or push data from | test-consumer |
9+
| `app_id` | *Optional[str]* | :heavy_minus_sign: | The ID of your Unify application | dSBdXd2H6Mqwfg0atXHXYcysLJE9qyn1VwBtXHX |

0 commit comments

Comments
 (0)