Skip to content

Commit 0ea9162

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.545.0
1 parent 859b70a commit 0ea9162

File tree

85 files changed

+220
-210
lines changed

Some content is hidden

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

85 files changed

+220
-210
lines changed

.speakeasy/gen.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
lockVersion: 2.0.0
22
id: 3f63a12a-c4cd-4e2e-98dc-9d5c6f5180ec
33
management:
4-
docChecksum: 4ecc6e9be19628616516be50257c3444
4+
docChecksum: 923a6e9af8d2dd70c5c80725d11ecf1f
55
docVersion: 1.0.0
6-
speakeasyVersion: 1.544.0
6+
speakeasyVersion: 1.545.0
77
generationVersion: 2.599.0
8-
releaseVersion: 0.3.0
9-
configChecksum: 2c36d96c44ffbf18e5db5270c71b970a
8+
releaseVersion: 0.3.1
9+
configChecksum: 5a0b0fe44e44c8d93533cac4ce7fe05a
1010
repoURL: https://github.com/mollie/mollie-api-python-alpha.git
1111
installationURL: https://github.com/mollie/mollie-api-python-alpha.git
1212
published: true

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ generation:
1919
oAuth2ClientCredentialsEnabled: true
2020
oAuth2PasswordEnabled: true
2121
python:
22-
version: 0.3.0
22+
version: 0.3.1
2323
additionalDependencies:
2424
dev: {}
2525
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.544.0
1+
speakeasyVersion: 1.545.0
22
sources:
33
Mollie API:
44
sourceNamespace: mollie-api
5-
sourceRevisionDigest: sha256:8b086d2c009b0c5ef0dda78f37ccfd02af46b166943ffa515615d2b0f72e32f3
6-
sourceBlobDigest: sha256:14271aa71c73f003d1af1b79f50a76a2a1fc3c4cdf6ba434461132c4e5651b68
5+
sourceRevisionDigest: sha256:3648147d4bd60d450a795d862c126d848d6ee447064772e997759b88556fd239
6+
sourceBlobDigest: sha256:58b05bd5377013f08d1c816d1a69e31f8e6b493262dfc6acc9359ecead4ed555
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1747215769
9+
- speakeasy-sdk-regen-1747268686
1010
- 1.0.0
1111
targets:
1212
client:
1313
source: Mollie API
1414
sourceNamespace: mollie-api
15-
sourceRevisionDigest: sha256:8b086d2c009b0c5ef0dda78f37ccfd02af46b166943ffa515615d2b0f72e32f3
16-
sourceBlobDigest: sha256:14271aa71c73f003d1af1b79f50a76a2a1fc3c4cdf6ba434461132c4e5651b68
15+
sourceRevisionDigest: sha256:3648147d4bd60d450a795d862c126d848d6ee447064772e997759b88556fd239
16+
sourceBlobDigest: sha256:58b05bd5377013f08d1c816d1a69e31f8e6b493262dfc6acc9359ecead4ed555
1717
codeSamplesNamespace: mollie-api-python-code-samples
18-
codeSamplesRevisionDigest: sha256:697e012c4f0d1612cecd4ac03d6ced9ec404d31b037d45afda60f53ec173d3cb
18+
codeSamplesRevisionDigest: sha256:c564487fba701fdcc44ca6f95f79c18562799ff954b737b6615d2d8b75ef5941
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,14 @@ Based on:
4848
### Generated
4949
- [python v0.3.0] .
5050
### Releases
51-
- [PyPI v0.3.0] https://pypi.org/project/mollie/0.3.0 - .
51+
- [PyPI v0.3.0] https://pypi.org/project/mollie/0.3.0 - .
52+
53+
## 2025-05-15 00:24:30
54+
### Changes
55+
Based on:
56+
- OpenAPI Doc
57+
- Speakeasy CLI 1.545.0 (2.599.0) https://github.com/speakeasy-api/speakeasy
58+
### Generated
59+
- [python v0.3.1] .
60+
### Releases
61+
- [PyPI v0.3.1] https://pypi.org/project/mollie/0.3.1 - .

docs/models/updatepaymentrequestbody.md

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

docs/sdks/balances/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ with Client(
3535
),
3636
) as client:
3737

38-
res = client.balances.list(currency="EUR", from_="bal_gVMhHKqSSRYJyPsuoPNFH")
38+
res = client.balances.list(currency="EUR", from_="bal_gVMhHKqSSRYJyPsuoPNFH", testmode=False)
3939

4040
# Handle response
4141
print(res)
@@ -93,7 +93,7 @@ with Client(
9393
),
9494
) as client:
9595

96-
res = client.balances.get(id="bal_gVMhHKqSSRYJyPsuoPNFH")
96+
res = client.balances.get(id="bal_gVMhHKqSSRYJyPsuoPNFH", testmode=False)
9797

9898
# Handle response
9999
print(res)
@@ -192,7 +192,7 @@ with Client(
192192
),
193193
) as client:
194194

195-
res = client.balances.get_report(balance_id="bal_gVMhHKqSSRYJyPsuoPNFH", from_="2024-01-01", until="2024-02-01", grouping="status-balances")
195+
res = client.balances.get_report(balance_id="bal_gVMhHKqSSRYJyPsuoPNFH", from_="2024-01-01", until="2024-02-01", grouping="status-balances", testmode=False)
196196

197197
# Handle response
198198
print(res)
@@ -250,7 +250,7 @@ with Client(
250250
),
251251
) as client:
252252

253-
res = client.balances.list_transactions(balance_id="bal_gVMhHKqSSRYJyPsuoPNFH", from_="baltr_QM24QwzUWR4ev4Xfgyt29A")
253+
res = client.balances.list_transactions(balance_id="bal_gVMhHKqSSRYJyPsuoPNFH", from_="baltr_QM24QwzUWR4ev4Xfgyt29A", testmode=False)
254254

255255
# Handle response
256256
print(res)

docs/sdks/captures/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ with Client(
9797
),
9898
) as client:
9999

100-
res = client.captures.list(payment_id="tr_5B8cwPMGnU", from_="cpt_vytxeTZskVKR7C7WgdSP3d", include=mollie.ListCapturesQueryParamInclude.PAYMENT)
100+
res = client.captures.list(payment_id="tr_5B8cwPMGnU", from_="cpt_vytxeTZskVKR7C7WgdSP3d", include=mollie.ListCapturesQueryParamInclude.PAYMENT, testmode=False)
101101

102102
# Handle response
103103
print(res)
@@ -151,7 +151,7 @@ with Client(
151151
),
152152
) as client:
153153

154-
res = client.captures.get(payment_id="tr_5B8cwPMGnU", capture_id="cpt_gVMhHKqSSRYJyPsuoPNFH", include=mollie.GetCaptureQueryParamInclude.PAYMENT)
154+
res = client.captures.get(payment_id="tr_5B8cwPMGnU", capture_id="cpt_gVMhHKqSSRYJyPsuoPNFH", include=mollie.GetCaptureQueryParamInclude.PAYMENT, testmode=False)
155155

156156
# Handle response
157157
print(res)

docs/sdks/chargebacks/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ with Client(
3535
),
3636
) as client:
3737

38-
res = client.chargebacks.list(payment_id="tr_5B8cwPMGnU", from_="chb_xFzwUN4ci8HAmSGUACS4J", embed=mollie.ListChargebacksQueryParamEmbed.PAYMENT)
38+
res = client.chargebacks.list(payment_id="tr_5B8cwPMGnU", from_="chb_xFzwUN4ci8HAmSGUACS4J", embed=mollie.ListChargebacksQueryParamEmbed.PAYMENT, testmode=False)
3939

4040
# Handle response
4141
print(res)
@@ -89,7 +89,7 @@ with Client(
8989
),
9090
) as client:
9191

92-
res = client.chargebacks.get(payment_id="tr_5B8cwPMGnU", chargeback_id="chb_xFzwUN4ci8HAmSGUACS4J", embed=mollie.GetChargebackQueryParamEmbed.PAYMENT)
92+
res = client.chargebacks.get(payment_id="tr_5B8cwPMGnU", chargeback_id="chb_xFzwUN4ci8HAmSGUACS4J", embed=mollie.GetChargebackQueryParamEmbed.PAYMENT, testmode=False)
9393

9494
# Handle response
9595
print(res)
@@ -143,7 +143,7 @@ with Client(
143143
),
144144
) as client:
145145

146-
res = client.chargebacks.all(from_="chb_xFzwUN4ci8HAmSGUACS4J", embed=mollie.ListAllChargebacksQueryParamEmbed.PAYMENT, sort="desc", profile_id="pfl_5B8cwPMGnU")
146+
res = client.chargebacks.all(from_="chb_xFzwUN4ci8HAmSGUACS4J", embed=mollie.ListAllChargebacksQueryParamEmbed.PAYMENT, sort="desc", profile_id="pfl_5B8cwPMGnU", testmode=False)
147147

148148
# Handle response
149149
print(res)

docs/sdks/customers/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ with Client(
9595
),
9696
) as client:
9797

98-
res = client.customers.list(from_="cst_5B8cwPMGnU", sort="desc")
98+
res = client.customers.list(from_="cst_5B8cwPMGnU", sort="desc", testmode=False)
9999

100100
# Handle response
101101
print(res)
@@ -146,7 +146,7 @@ with Client(
146146
),
147147
) as client:
148148

149-
res = client.customers.get(customer_id="cst_5B8cwPMGnU", include=mollie.GetCustomerQueryParamInclude.EVENTS)
149+
res = client.customers.get(customer_id="cst_5B8cwPMGnU", include=mollie.GetCustomerQueryParamInclude.EVENTS, testmode=False)
150150

151151
# Handle response
152152
print(res)
@@ -249,7 +249,7 @@ with Client(
249249
),
250250
) as client:
251251

252-
res = client.customers.delete(customer_id="cst_5B8cwPMGnU")
252+
res = client.customers.delete(customer_id="cst_5B8cwPMGnU", testmode=False)
253253

254254
# Handle response
255255
print(res)
@@ -577,7 +577,7 @@ with Client(
577577
),
578578
) as client:
579579

580-
res = client.customers.list_payments(customer_id="cst_5B8cwPMGnU", from_="tr_5B8cwPMGnU", sort="desc")
580+
res = client.customers.list_payments(customer_id="cst_5B8cwPMGnU", from_="tr_5B8cwPMGnU", sort="desc", testmode=False)
581581

582582
# Handle response
583583
print(res)

docs/sdks/mandates/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ with Client(
9898
),
9999
) as client:
100100

101-
res = client.mandates.list(customer_id="cst_5B8cwPMGnU", from_="mdt_5B8cwPMGnU", sort="desc")
101+
res = client.mandates.list(customer_id="cst_5B8cwPMGnU", from_="mdt_5B8cwPMGnU", sort="desc", testmode=False)
102102

103103
# Handle response
104104
print(res)
@@ -152,7 +152,7 @@ with Client(
152152
),
153153
) as client:
154154

155-
res = client.mandates.get(customer_id="cst_5B8cwPMGnU", mandate_id="mdt_5B8cwPMGnU")
155+
res = client.mandates.get(customer_id="cst_5B8cwPMGnU", mandate_id="mdt_5B8cwPMGnU", testmode=False)
156156

157157
# Handle response
158158
print(res)
@@ -203,7 +203,7 @@ with Client(
203203
),
204204
) as client:
205205

206-
res = client.mandates.revoke(customer_id="cst_5B8cwPMGnU", mandate_id="mdt_5B8cwPMGnU")
206+
res = client.mandates.revoke(customer_id="cst_5B8cwPMGnU", mandate_id="mdt_5B8cwPMGnU", testmode=False)
207207

208208
# Handle response
209209
print(res)

0 commit comments

Comments
 (0)