Skip to content

Commit dcffd2a

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.583.0
1 parent cdbe0c1 commit dcffd2a

133 files changed

Lines changed: 3755 additions & 4902 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**/__pycache__/
2+
**/.speakeasy/temp/
3+
**/.speakeasy/logs/
14
.venv/
25
pyrightconfig.json
36
.speakeasy/reports

.speakeasy/gen.lock

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

.speakeasy/gen.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,24 @@ generation:
44
maintainOpenAPIOrder: true
55
usageSnippets:
66
optionalPropertyRendering: withExample
7+
sdkInitStyle: constructor
78
useClassNamesForArrayFields: true
89
fixes:
910
nameResolutionDec2023: true
1011
nameResolutionFeb2025: true
1112
parameterOrderingFeb2024: true
1213
requestResponseComponentNamesFeb2024: true
1314
securityFeb2025: false
15+
sharedErrorComponentsApr2025: false
1416
auth:
1517
oAuth2ClientCredentialsEnabled: true
1618
oAuth2PasswordEnabled: false
19+
tests:
20+
generateTests: true
21+
generateNewTests: false
22+
skipResponseBodyAssertions: false
1723
python:
18-
version: 4.0.0
24+
version: 4.1.0
1925
additionalDependencies:
2026
dev:
2127
httpretty: ==1.1.4
@@ -25,6 +31,7 @@ python:
2531
main: {}
2632
authors:
2733
- Shippo
34+
baseErrorName: ShippoError
2835
clientServerStatusCodesAsErrors: true
2936
defaultErrorName: SDKError
3037
description: Shipping API Python library (USPS, FedEx, UPS and more)
@@ -47,9 +54,11 @@ python:
4754
license: MIT License
4855
maxMethodParams: 3
4956
methodArguments: require-security-and-request
57+
moduleName: ""
5058
outputModelSuffix: output
5159
packageName: shippo
5260
projectUrls: {}
61+
pytestFilterWarnings: []
5362
pytestTimeout: 0
5463
responseFormat: flat
5564
templateVersion: v2

.speakeasy/workflow.lock

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1-
speakeasyVersion: 1.521.1
1+
speakeasyVersion: 1.583.0
22
sources:
33
openapi:
44
sourceNamespace: openapi
5-
sourceRevisionDigest: sha256:e8ab98342833888dbc4dd20f683ee5fb7791107d8574b8dfabce743bc3675cd0
6-
sourceBlobDigest: sha256:8c66d55b10c00886e8fd1f2b6ea6b233bccf17f622fed046dcf302d5da3f91f5
5+
sourceRevisionDigest: sha256:c7975b03b0e922bd14ceb9f47b00751e5ab098fca449707d2e20845cf7cc50f5
6+
sourceBlobDigest: sha256:38d48412b95b3b5c0ed071f4887b46472950b923b239a773d7830c0ee92c6c14
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1732493299
9+
- speakeasy-sdk-regen-1743448946
1010
- "2018-02-08"
1111
targets:
1212
first-target:
1313
source: openapi
1414
sourceNamespace: openapi
15-
sourceRevisionDigest: sha256:e8ab98342833888dbc4dd20f683ee5fb7791107d8574b8dfabce743bc3675cd0
16-
sourceBlobDigest: sha256:8c66d55b10c00886e8fd1f2b6ea6b233bccf17f622fed046dcf302d5da3f91f5
15+
sourceRevisionDigest: sha256:c7975b03b0e922bd14ceb9f47b00751e5ab098fca449707d2e20845cf7cc50f5
16+
sourceBlobDigest: sha256:38d48412b95b3b5c0ed071f4887b46472950b923b239a773d7830c0ee92c6c14
17+
codeSamplesNamespace: openapi-python-code-samples
18+
codeSamplesRevisionDigest: sha256:f3217289f87dbfafc0e0f87f082d4f7daa00baacbb517273ebb20f8727d6ce58
1719
workflow:
1820
workflowVersion: 1.0.0
1921
speakeasyVersion: latest
@@ -32,5 +34,5 @@ workflow:
3234
token: $pypi_token
3335
codeSamples:
3436
registry:
35-
location: registry.speakeasyapi.dev/shippo/shippo/openapi-code-samples
37+
location: registry.speakeasyapi.dev/shippo/shippo/openapi-python-code-samples
3638
blocking: false

.speakeasy/workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ targets:
1515
token: $pypi_token
1616
codeSamples:
1717
registry:
18-
location: registry.speakeasyapi.dev/shippo/shippo/openapi-code-samples
18+
location: registry.speakeasyapi.dev/shippo/shippo/openapi-python-code-samples
1919
blocking: false

README-PYPI.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ from shippo.utils import BackoffStrategy, RetryConfig
140140

141141

142142
with Shippo(
143-
api_key_header="<YOUR_API_KEY_HERE>",
144143
shippo_api_version="2018-02-08",
144+
api_key_header="<YOUR_API_KEY_HERE>",
145145
) as s_client:
146146

147-
res = s_client.addresses.list(,
147+
res = s_client.addresses.list(page=1, results=5,
148148
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
149149

150150
assert res is not None
@@ -162,11 +162,11 @@ from shippo.utils import BackoffStrategy, RetryConfig
162162

163163
with Shippo(
164164
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
165-
api_key_header="<YOUR_API_KEY_HERE>",
166165
shippo_api_version="2018-02-08",
166+
api_key_header="<YOUR_API_KEY_HERE>",
167167
) as s_client:
168168

169-
res = s_client.addresses.list()
169+
res = s_client.addresses.list(page=1, results=5)
170170

171171
assert res is not None
172172

@@ -294,8 +294,8 @@ from shippo import Shippo
294294
def main():
295295

296296
with Shippo(
297-
api_key_header="<YOUR_API_KEY_HERE>",
298297
shippo_api_version="2018-02-08",
298+
api_key_header="<YOUR_API_KEY_HERE>",
299299
) as s_client:
300300
# Rest of application here...
301301

@@ -304,8 +304,8 @@ def main():
304304
async def amain():
305305

306306
async with Shippo(
307-
api_key_header="<YOUR_API_KEY_HERE>",
308307
shippo_api_version="2018-02-08",
308+
api_key_header="<YOUR_API_KEY_HERE>",
309309
) as s_client:
310310
# Rest of application here...
311311
```

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ from shippo.utils import BackoffStrategy, RetryConfig
140140

141141

142142
with Shippo(
143-
api_key_header="<YOUR_API_KEY_HERE>",
144143
shippo_api_version="2018-02-08",
144+
api_key_header="<YOUR_API_KEY_HERE>",
145145
) as s_client:
146146

147-
res = s_client.addresses.list(,
147+
res = s_client.addresses.list(page=1, results=5,
148148
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
149149

150150
assert res is not None
@@ -162,11 +162,11 @@ from shippo.utils import BackoffStrategy, RetryConfig
162162

163163
with Shippo(
164164
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
165-
api_key_header="<YOUR_API_KEY_HERE>",
166165
shippo_api_version="2018-02-08",
166+
api_key_header="<YOUR_API_KEY_HERE>",
167167
) as s_client:
168168

169-
res = s_client.addresses.list()
169+
res = s_client.addresses.list(page=1, results=5)
170170

171171
assert res is not None
172172

@@ -294,8 +294,8 @@ from shippo import Shippo
294294
def main():
295295

296296
with Shippo(
297-
api_key_header="<YOUR_API_KEY_HERE>",
298297
shippo_api_version="2018-02-08",
298+
api_key_header="<YOUR_API_KEY_HERE>",
299299
) as s_client:
300300
# Rest of application here...
301301

@@ -304,8 +304,8 @@ def main():
304304
async def amain():
305305

306306
async with Shippo(
307-
api_key_header="<YOUR_API_KEY_HERE>",
308307
shippo_api_version="2018-02-08",
308+
api_key_header="<YOUR_API_KEY_HERE>",
309309
) as s_client:
310310
# Rest of application here...
311311
```

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,4 +398,14 @@ Based on:
398398
### Generated
399399
- [python v3.9.0] .
400400
### Releases
401-
- [PyPI v3.9.0] https://pypi.org/project/shippo/3.9.0 - .
401+
- [PyPI v3.9.0] https://pypi.org/project/shippo/3.9.0 - .
402+
403+
## 2025-07-21 00:10:09
404+
### Changes
405+
Based on:
406+
- OpenAPI Doc
407+
- Speakeasy CLI 1.583.0 (2.658.3) https://github.com/speakeasy-api/speakeasy
408+
### Generated
409+
- [python v4.1.0] .
410+
### Releases
411+
- [PyPI v4.1.0] https://pypi.org/project/shippo/4.1.0 - .

USAGE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ from shippo import Shippo
55

66

77
with Shippo(
8-
api_key_header="<YOUR_API_KEY_HERE>",
98
shippo_api_version="2018-02-08",
9+
api_key_header="<YOUR_API_KEY_HERE>",
1010
) as s_client:
1111

12-
res = s_client.addresses.list()
12+
res = s_client.addresses.list(page=1, results=5)
1313

1414
assert res is not None
1515

@@ -28,11 +28,11 @@ from shippo import Shippo
2828
async def main():
2929

3030
async with Shippo(
31-
api_key_header="<YOUR_API_KEY_HERE>",
3231
shippo_api_version="2018-02-08",
32+
api_key_header="<YOUR_API_KEY_HERE>",
3333
) as s_client:
3434

35-
res = await s_client.addresses.list_async()
35+
res = await s_client.addresses.list_async(page=1, results=5)
3636

3737
assert res is not None
3838

0 commit comments

Comments
 (0)