Skip to content

Commit 7f9218c

Browse files
authored
Merge pull request #152 from dubinc/speakeasy-sdk-regen-1761957139
chore: 🐝 Update SDK - Generate 0.33.0
2 parents 0f2de01 + 55b4f6d commit 7f9218c

File tree

101 files changed

+1723
-1433
lines changed

Some content is hidden

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

101 files changed

+1723
-1433
lines changed

.speakeasy/gen.lock

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

.speakeasy/gen.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ generation:
1919
hoistGlobalSecurity: true
2020
schemas:
2121
allOfMergeStrategy: shallowMerge
22+
requestBodyFieldName: ""
2223
tests:
2324
generateTests: true
2425
generateNewTests: false
2526
skipResponseBodyAssertions: false
2627
python:
27-
version: 0.32.0
28+
version: 0.33.0
2829
additionalDependencies:
2930
dev: {}
3031
main: {}
@@ -54,8 +55,10 @@ python:
5455
operations: models/operations
5556
shared: models/components
5657
webhooks: models/webhooks
58+
inferUnionDiscriminators: true
5759
inputModelSuffix: input
5860
legacyPyright: true
61+
license: ""
5962
maxMethodParams: 0
6063
methodArguments: require-security-and-request
6164
moduleName: ""

.speakeasy/workflow.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.642.2
1+
speakeasyVersion: 1.662.0
22
sources:
33
dub:
44
sourceNamespace: dub
5-
sourceRevisionDigest: sha256:ae46b9a0d6478cfbe024e47aeaf9fc787ce039de442afaac4868c65b387ed0b9
6-
sourceBlobDigest: sha256:22f47bc4b7abdc4d2cacb23f137c9c98ddafaf40e7fb59e98fcffa5958e11a0c
5+
sourceRevisionDigest: sha256:a8587fb2d3ddd0d87c7c6811977028ee1aa2bfa6277715fd144571d0601f2b52
6+
sourceBlobDigest: sha256:c7d42670a314b80665fe3dd5f3dd5d055786c280aeff86c7e5f8936941a3d8bc
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1759796915
9+
- speakeasy-sdk-regen-1761957139
1010
- 0.0.1
1111
targets:
1212
my-first-target:
1313
source: dub
1414
sourceNamespace: dub
15-
sourceRevisionDigest: sha256:ae46b9a0d6478cfbe024e47aeaf9fc787ce039de442afaac4868c65b387ed0b9
16-
sourceBlobDigest: sha256:22f47bc4b7abdc4d2cacb23f137c9c98ddafaf40e7fb59e98fcffa5958e11a0c
15+
sourceRevisionDigest: sha256:a8587fb2d3ddd0d87c7c6811977028ee1aa2bfa6277715fd144571d0601f2b52
16+
sourceBlobDigest: sha256:c7d42670a314b80665fe3dd5f3dd5d055786c280aeff86c7e5f8936941a3d8bc
1717
codeSamplesNamespace: code-samples-python-my-first-target
18-
codeSamplesRevisionDigest: sha256:ffabec7ddffbfa09b60e8b90af6e1ea3cac165bb034656a1c68bbc30505bb9a8
18+
codeSamplesRevisionDigest: sha256:b0894c42ba9458f9b55b89eaabf47a45b5a73266ae736303c3710cb872d5cddb
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ with Dub(
135135
],
136136
})
137137

138-
assert res is not None
139-
140138
# Handle response
141139
print(res)
142140
```
@@ -174,8 +172,6 @@ async def main():
174172
],
175173
})
176174

177-
assert res is not None
178-
179175
# Handle response
180176
print(res)
181177

@@ -211,8 +207,6 @@ with Dub(
211207
],
212208
})
213209

214-
assert res is not None
215-
216210
# Handle response
217211
print(res)
218212
```
@@ -250,8 +244,6 @@ async def main():
250244
],
251245
})
252246

253-
assert res is not None
254-
255247
# Handle response
256248
print(res)
257249

@@ -277,7 +269,6 @@ asyncio.run(main())
277269
### [customers](docs/sdks/customers/README.md)
278270

279271
* [list](docs/sdks/customers/README.md#list) - Retrieve a list of customers
280-
* [~~create~~](docs/sdks/customers/README.md#create) - Create a customer :warning: **Deprecated**
281272
* [get](docs/sdks/customers/README.md#get) - Retrieve a customer
282273
* [update](docs/sdks/customers/README.md#update) - Update a customer
283274
* [delete](docs/sdks/customers/README.md#delete) - Delete a customer
@@ -327,6 +318,7 @@ asyncio.run(main())
327318
* [retrieve_links](docs/sdks/partners/README.md#retrieve_links) - Retrieve a partner's links.
328319
* [upsert_link](docs/sdks/partners/README.md#upsert_link) - Upsert a link for a partner
329320
* [analytics](docs/sdks/partners/README.md#analytics) - Retrieve analytics for a partner
321+
* [ban](docs/sdks/partners/README.md#ban) - Ban a partner
330322

331323
### [qr_codes](docs/sdks/qrcodes/README.md)
332324

@@ -396,8 +388,6 @@ with Dub(
396388
],
397389
})
398390

399-
assert res is not None
400-
401391
# Handle response
402392
print(res)
403393

@@ -477,8 +467,6 @@ with Dub(
477467
],
478468
})
479469

480-
assert res is not None
481-
482470
# Handle response
483471
print(res)
484472

@@ -604,8 +592,6 @@ with Dub(
604592
],
605593
})
606594

607-
assert res is not None
608-
609595
# Handle response
610596
print(res)
611597

@@ -646,8 +632,6 @@ with Dub(
646632
},
647633
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
648634

649-
assert res is not None
650-
651635
# Handle response
652636
print(res)
653637

@@ -682,8 +666,6 @@ with Dub(
682666
],
683667
})
684668

685-
assert res is not None
686-
687669
# Handle response
688670
print(res)
689671

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1426,4 +1426,14 @@ Based on:
14261426
### Generated
14271427
- [python v0.32.0] .
14281428
### Releases
1429-
- [PyPI v0.32.0] https://pypi.org/project/dub/0.32.0 - .
1429+
- [PyPI v0.32.0] https://pypi.org/project/dub/0.32.0 - .
1430+
1431+
## 2025-11-26 20:15:03
1432+
### Changes
1433+
Based on:
1434+
- OpenAPI Doc
1435+
- Speakeasy CLI 1.662.0 (2.763.3) https://github.com/speakeasy-api/speakeasy
1436+
### Generated
1437+
- [python v0.33.0] .
1438+
### Releases
1439+
- [PyPI v0.33.0] https://pypi.org/project/dub/0.33.0 - .

USAGE.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ with Dub(
2626
],
2727
})
2828

29-
assert res is not None
30-
3129
# Handle response
3230
print(res)
3331
```
@@ -65,8 +63,6 @@ async def main():
6563
],
6664
})
6765

68-
assert res is not None
69-
7066
# Handle response
7167
print(res)
7268

@@ -100,8 +96,6 @@ with Dub(
10096
],
10197
})
10298

103-
assert res is not None
104-
10599
# Handle response
106100
print(res)
107101
```
@@ -139,8 +133,6 @@ async def main():
139133
],
140134
})
141135

142-
assert res is not None
143-
144136
# Handle response
145137
print(res)
146138

0 commit comments

Comments
 (0)