Skip to content

Commit 9fb79f9

Browse files
authored
Merge pull request #28 from apideck-libraries/speakeasy-sdk-regen-1740649258
chore: 🐝 Update SDK - Generate 0.8.1
2 parents 8feeb1b + f732ad6 commit 9fb79f9

File tree

100 files changed

+460
-147
lines changed

Some content is hidden

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

100 files changed

+460
-147
lines changed

.speakeasy/gen.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: fca0ac3a-5f4e-452c-bbc7-2311afa8da40
33
management:
4-
docChecksum: 7c6ef2ed512e323eb81fb00225e7e166
4+
docChecksum: 30b8f4819c98857dd9903d879b3ebca9
55
docVersion: 10.11.5
6-
speakeasyVersion: 1.501.1
7-
generationVersion: 2.522.5
8-
releaseVersion: 0.8.0
9-
configChecksum: 5cc9cdf7161979901cc0e0ee06065fd3
6+
speakeasyVersion: 1.509.1
7+
generationVersion: 2.539.1
8+
releaseVersion: 0.8.1
9+
configChecksum: be7fc460b53aee18f5c05b65996bf729
1010
repoURL: https://github.com/apideck-libraries/sdk-python.git
1111
installationURL: https://github.com/apideck-libraries/sdk-python.git
1212
published: true
@@ -15,7 +15,7 @@ features:
1515
acceptHeaders: 3.0.0
1616
additionalDependencies: 1.0.0
1717
constsAndDefaults: 1.0.5
18-
core: 5.12.1
18+
core: 5.12.2
1919
deepObjectParams: 0.1.0
2020
defaultEnabledRetries: 0.2.0
2121
deprecations: 3.0.2
@@ -349,6 +349,7 @@ generatedFiles:
349349
- docs/models/activitytype.md
350350
- docs/models/address.md
351351
- docs/models/addresses.md
352+
- docs/models/addresstype.md
352353
- docs/models/ageddebtors.md
353354
- docs/models/agedreportfilter.md
354355
- docs/models/allocation.md
@@ -520,7 +521,6 @@ generatedFiles:
520521
- docs/models/contactsfilter.md
521522
- docs/models/contactssort.md
522523
- docs/models/contactssortby.md
523-
- docs/models/contacttype.md
524524
- docs/models/copyfolderrequest.md
525525
- docs/models/coverage.md
526526
- docs/models/createaccountingdepartmentresponse.md

.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.8.0
21+
version: 0.8.1
2222
additionalDependencies:
2323
dev: {}
2424
main: {}

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.501.1
1+
speakeasyVersion: 1.509.1
22
sources:
33
Apideck:
44
sourceNamespace: apideck
5-
sourceRevisionDigest: sha256:f87c895c56d9e11c3082319a386ddfb6780ef54b06df2a05a47035140382938f
6-
sourceBlobDigest: sha256:af4739fe176a827ca5a5054b4ca4061886717f775dbb5eb11f3c57e63a9f3b99
5+
sourceRevisionDigest: sha256:ab0f3282c2ccc48801b0c8b9d7c77e8996105398b5c915cb736e1a495ff7a603
6+
sourceBlobDigest: sha256:f529de1400bbcfb0b224fe2e481ea0cfdac15ab9d73f6510ce75a9dbcf609631
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1740396639
9+
- speakeasy-sdk-regen-1740649258
1010
- 10.11.5
1111
targets:
1212
apideck:
1313
source: Apideck
1414
sourceNamespace: apideck
15-
sourceRevisionDigest: sha256:f87c895c56d9e11c3082319a386ddfb6780ef54b06df2a05a47035140382938f
16-
sourceBlobDigest: sha256:af4739fe176a827ca5a5054b4ca4061886717f775dbb5eb11f3c57e63a9f3b99
15+
sourceRevisionDigest: sha256:ab0f3282c2ccc48801b0c8b9d7c77e8996105398b5c915cb736e1a495ff7a603
16+
sourceBlobDigest: sha256:f529de1400bbcfb0b224fe2e481ea0cfdac15ab9d73f6510ce75a9dbcf609631
1717
codeSamplesNamespace: apideck-python-code-samples
18-
codeSamplesRevisionDigest: sha256:bd0f347ccba2c1525660cc4e6400d319fe2e146d03c96dc62e5326971f89e3b8
18+
codeSamplesRevisionDigest: sha256:2c09ae63718394ff24472117f4a4fb378576cfa345813658841d75ad0f2aa699
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ Generally, the SDK will work well with most IDEs out of the box. However, when u
118118
from apideck_unify import Apideck
119119
import os
120120

121+
121122
with Apideck(
122123
api_key=os.getenv("APIDECK_API_KEY", ""),
123124
consumer_id="test-consumer",
@@ -150,6 +151,7 @@ import asyncio
150151
import os
151152

152153
async def main():
154+
153155
async with Apideck(
154156
api_key=os.getenv("APIDECK_API_KEY", ""),
155157
consumer_id="test-consumer",
@@ -191,6 +193,7 @@ To authenticate with the API the `api_key` parameter must be set when initializi
191193
from apideck_unify import Apideck
192194
import os
193195

196+
194197
with Apideck(
195198
api_key=os.getenv("APIDECK_API_KEY", ""),
196199
consumer_id="test-consumer",
@@ -754,6 +757,7 @@ Here's an example of one such pagination call:
754757
from apideck_unify import Apideck
755758
import os
756759

760+
757761
with Apideck(
758762
api_key=os.getenv("APIDECK_API_KEY", ""),
759763
consumer_id="test-consumer",
@@ -789,6 +793,7 @@ from apideck_unify import Apideck
789793
from apideck_unify.utils import BackoffStrategy, RetryConfig
790794
import os
791795

796+
792797
with Apideck(
793798
api_key=os.getenv("APIDECK_API_KEY", ""),
794799
consumer_id="test-consumer",
@@ -819,6 +824,7 @@ from apideck_unify import Apideck
819824
from apideck_unify.utils import BackoffStrategy, RetryConfig
820825
import os
821826

827+
822828
with Apideck(
823829
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
824830
api_key=os.getenv("APIDECK_API_KEY", ""),
@@ -875,6 +881,7 @@ When custom error responses are specified for an operation, the SDK may also rai
875881
from apideck_unify import Apideck, models
876882
import os
877883

884+
878885
with Apideck(
879886
api_key=os.getenv("APIDECK_API_KEY", ""),
880887
consumer_id="test-consumer",
@@ -929,6 +936,7 @@ The default server can be overridden globally by passing a URL to the `server_ur
929936
from apideck_unify import Apideck
930937
import os
931938

939+
932940
with Apideck(
933941
server_url="https://unify.apideck.com",
934942
api_key=os.getenv("APIDECK_API_KEY", ""),
@@ -960,6 +968,7 @@ The server URL can also be overridden on a per-operation basis, provided a serve
960968
from apideck_unify import Apideck
961969
import os
962970

971+
963972
with Apideck(
964973
api_key=os.getenv("APIDECK_API_KEY", ""),
965974
consumer_id="test-consumer",
@@ -1111,6 +1120,7 @@ The `Apideck` class implements the context manager protocol and registers a fina
11111120
from apideck_unify import Apideck
11121121
import os
11131122
def main():
1123+
11141124
with Apideck(
11151125
api_key=os.getenv("APIDECK_API_KEY", ""),
11161126
consumer_id="test-consumer",
@@ -1121,6 +1131,7 @@ def main():
11211131

11221132
# Or when using async:
11231133
async def amain():
1134+
11241135
async with Apideck(
11251136
api_key=os.getenv("APIDECK_API_KEY", ""),
11261137
consumer_id="test-consumer",

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,14 @@ Based on:
128128
### Generated
129129
- [python v0.8.0] .
130130
### Releases
131-
- [PyPI v0.8.0] https://pypi.org/project/apideck-unify/0.8.0 - .
131+
- [PyPI v0.8.0] https://pypi.org/project/apideck-unify/0.8.0 - .
132+
133+
## 2025-03-05 00:16:56
134+
### Changes
135+
Based on:
136+
- OpenAPI Doc
137+
- Speakeasy CLI 1.509.1 (2.539.1) https://github.com/speakeasy-api/speakeasy
138+
### Generated
139+
- [python v0.8.1] .
140+
### Releases
141+
- [PyPI v0.8.1] https://pypi.org/project/apideck-unify/0.8.1 - .

USAGE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from apideck_unify import Apideck
55
import os
66

7+
78
with Apideck(
89
api_key=os.getenv("APIDECK_API_KEY", ""),
910
consumer_id="test-consumer",
@@ -36,6 +37,7 @@ import asyncio
3637
import os
3738

3839
async def main():
40+
3941
async with Apideck(
4042
api_key=os.getenv("APIDECK_API_KEY", ""),
4143
consumer_id="test-consumer",

docs/models/address.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
| Field | Type | Required | Description | Example |
77
| ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
88
| `id` | *OptionalNullable[str]* | :heavy_minus_sign: | Unique identifier for the address. | 123 |
9-
| `type` | [OptionalNullable[models.Type]](../models/type.md) | :heavy_minus_sign: | The type of address. | primary |
9+
| `type` | [OptionalNullable[models.AddressType]](../models/addresstype.md) | :heavy_minus_sign: | The type of address. | primary |
1010
| `string` | *OptionalNullable[str]* | :heavy_minus_sign: | The address string. Some APIs don't provide structured address data. | 25 Spring Street, Blackburn, VIC 3130 |
1111
| `name` | *OptionalNullable[str]* | :heavy_minus_sign: | The name of the address. | HQ US |
1212
| `line1` | *OptionalNullable[str]* | :heavy_minus_sign: | Line 1 of the address e.g. number, street, suite, apt #, etc. | Main street |

docs/models/addresstype.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# AddressType
2+
3+
The type of address.
4+
5+
6+
## Values
7+
8+
| Name | Value |
9+
| ----------- | ----------- |
10+
| `PRIMARY` | primary |
11+
| `SECONDARY` | secondary |
12+
| `HOME` | home |
13+
| `OFFICE` | office |
14+
| `SHIPPING` | shipping |
15+
| `BILLING` | billing |
16+
| `OTHER` | other |

docs/models/contact.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| `name` | *Nullable[str]* | :heavy_check_mark: | Full name of the contact. | Elon Musk |
99
| `id` | *Optional[str]* | :heavy_minus_sign: | Unique identifier for the contact. | 12345 |
1010
| `owner_id` | *OptionalNullable[str]* | :heavy_minus_sign: | The owner of the contact. | 54321 |
11-
| `type` | [OptionalNullable[models.ContactType]](../models/contacttype.md) | :heavy_minus_sign: | The type of the contact. | personal |
11+
| `type` | [OptionalNullable[models.Type]](../models/type.md) | :heavy_minus_sign: | The type of the contact. | personal |
1212
| `company_id` | *OptionalNullable[str]* | :heavy_minus_sign: | The company the contact is associated with. | 23456 |
1313
| `company_name` | *OptionalNullable[str]* | :heavy_minus_sign: | The name of the company the contact is associated with. | 23456 |
1414
| `lead_id` | *OptionalNullable[str]* | :heavy_minus_sign: | The lead the contact is associated with. | 34567 |

0 commit comments

Comments
 (0)