Skip to content

Commit 88025b8

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.605.5
1 parent 712d9f8 commit 88025b8

File tree

396 files changed

+16766
-4440
lines changed

Some content is hidden

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

396 files changed

+16766
-4440
lines changed

.speakeasy/gen.lock

Lines changed: 242 additions & 125 deletions
Large diffs are not rendered by default.

.speakeasy/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ generation:
2424
generateNewTests: false
2525
skipResponseBodyAssertions: false
2626
python:
27-
version: 0.8.0
27+
version: 0.8.1
2828
additionalDependencies:
2929
dev: {}
3030
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.605.1
1+
speakeasyVersion: 1.605.5
22
sources:
33
Mollie API:
44
sourceNamespace: mollie-api
5-
sourceRevisionDigest: sha256:9a16352a6f1797dacb8308ba27bc43856d076bc666ca2c5ee96dbfd280c3ec69
6-
sourceBlobDigest: sha256:8021fed670a0fc6e045f1b87e0465d85936d658bb7cab86d8c636b90cbb900b0
5+
sourceRevisionDigest: sha256:489d3f993d4dd3a23641a01e57c1a0022856d26f32b6dda454306d81b4323396
6+
sourceBlobDigest: sha256:bc66ec09b6c7ec3823d277a397da9cbef8fe2d1f388c9b63c73facbc14e4c8c7
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1755505081
9+
- speakeasy-sdk-regen-1755535500
1010
- 1.0.0
1111
targets:
1212
client:
1313
source: Mollie API
1414
sourceNamespace: mollie-api
15-
sourceRevisionDigest: sha256:9a16352a6f1797dacb8308ba27bc43856d076bc666ca2c5ee96dbfd280c3ec69
16-
sourceBlobDigest: sha256:8021fed670a0fc6e045f1b87e0465d85936d658bb7cab86d8c636b90cbb900b0
15+
sourceRevisionDigest: sha256:489d3f993d4dd3a23641a01e57c1a0022856d26f32b6dda454306d81b4323396
16+
sourceBlobDigest: sha256:bc66ec09b6c7ec3823d277a397da9cbef8fe2d1f388c9b63c73facbc14e4c8c7
1717
codeSamplesNamespace: mollie-api-python-code-samples
18-
codeSamplesRevisionDigest: sha256:c93ed752e051028a340acb9f631115eb8dcc7375e03297d3d42aa6ac5aa5b324
18+
codeSamplesRevisionDigest: sha256:ceed125a23e90d514c268d642408144586e5a5d1d18e3986d2a86e1269957cfb
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README-PYPI.md

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ Generally, the SDK will work well with most IDEs out of the box. However, when u
124124

125125
```python
126126
# Synchronous Example
127+
from datetime import date
127128
import mollie
128129
from mollie import ClientSDK
129130
import os
@@ -357,6 +358,18 @@ with ClientSDK(
357358
"profile_id": "pfl_5B8cwPMGnU",
358359
"due_date": "2025-01-01",
359360
"testmode": False,
361+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
362+
"company": {
363+
"registration_number": "12345678",
364+
"vat_number": "NL123456789B01",
365+
},
366+
"card_token": "tkn_12345",
367+
"voucher_number": "1234567890",
368+
"voucher_pin": "1234",
369+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
370+
"digital_goods": True,
371+
"customer_reference": "1234567890",
372+
"terminal_id": "term_1234567890",
360373
})
361374

362375
# Handle response
@@ -369,6 +382,7 @@ The same SDK client can also be used to make asynchronous requests by importing
369382
```python
370383
# Asynchronous Example
371384
import asyncio
385+
from datetime import date
372386
import mollie
373387
from mollie import ClientSDK
374388
import os
@@ -603,6 +617,18 @@ async def main():
603617
"profile_id": "pfl_5B8cwPMGnU",
604618
"due_date": "2025-01-01",
605619
"testmode": False,
620+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
621+
"company": {
622+
"registration_number": "12345678",
623+
"vat_number": "NL123456789B01",
624+
},
625+
"card_token": "tkn_12345",
626+
"voucher_number": "1234567890",
627+
"voucher_pin": "1234",
628+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
629+
"digital_goods": True,
630+
"customer_reference": "1234567890",
631+
"terminal_id": "term_1234567890",
606632
})
607633

608634
# Handle response
@@ -626,6 +652,7 @@ This SDK supports the following security schemes globally:
626652

627653
You can set the security parameters through the `security` optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
628654
```python
655+
from datetime import date
629656
import mollie
630657
from mollie import ClientSDK
631658
import os
@@ -859,6 +886,18 @@ with ClientSDK(
859886
"profile_id": "pfl_5B8cwPMGnU",
860887
"due_date": "2025-01-01",
861888
"testmode": False,
889+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
890+
"company": {
891+
"registration_number": "12345678",
892+
"vat_number": "NL123456789B01",
893+
},
894+
"card_token": "tkn_12345",
895+
"voucher_number": "1234567890",
896+
"voucher_pin": "1234",
897+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
898+
"digital_goods": True,
899+
"customer_reference": "1234567890",
900+
"terminal_id": "term_1234567890",
862901
})
863902

864903
# Handle response
@@ -1052,6 +1091,7 @@ Some of the endpoints in this SDK support retries. If you use the SDK without an
10521091

10531092
To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call:
10541093
```python
1094+
from datetime import date
10551095
import mollie
10561096
from mollie import ClientSDK
10571097
from mollie.utils import BackoffStrategy, RetryConfig
@@ -1286,6 +1326,18 @@ with ClientSDK(
12861326
"profile_id": "pfl_5B8cwPMGnU",
12871327
"due_date": "2025-01-01",
12881328
"testmode": False,
1329+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
1330+
"company": {
1331+
"registration_number": "12345678",
1332+
"vat_number": "NL123456789B01",
1333+
},
1334+
"card_token": "tkn_12345",
1335+
"voucher_number": "1234567890",
1336+
"voucher_pin": "1234",
1337+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
1338+
"digital_goods": True,
1339+
"customer_reference": "1234567890",
1340+
"terminal_id": "term_1234567890",
12891341
},
12901342
RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))
12911343

@@ -1296,6 +1348,7 @@ with ClientSDK(
12961348

12971349
If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
12981350
```python
1351+
from datetime import date
12991352
import mollie
13001353
from mollie import ClientSDK
13011354
from mollie.utils import BackoffStrategy, RetryConfig
@@ -1531,6 +1584,18 @@ with ClientSDK(
15311584
"profile_id": "pfl_5B8cwPMGnU",
15321585
"due_date": "2025-01-01",
15331586
"testmode": False,
1587+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
1588+
"company": {
1589+
"registration_number": "12345678",
1590+
"vat_number": "NL123456789B01",
1591+
},
1592+
"card_token": "tkn_12345",
1593+
"voucher_number": "1234567890",
1594+
"voucher_pin": "1234",
1595+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
1596+
"digital_goods": True,
1597+
"customer_reference": "1234567890",
1598+
"terminal_id": "term_1234567890",
15341599
})
15351600

15361601
# Handle response
@@ -1555,6 +1620,7 @@ with ClientSDK(
15551620

15561621
### Example
15571622
```python
1623+
from datetime import date
15581624
import mollie
15591625
from mollie import ClientSDK, models
15601626
import os
@@ -1790,6 +1856,18 @@ with ClientSDK(
17901856
"profile_id": "pfl_5B8cwPMGnU",
17911857
"due_date": "2025-01-01",
17921858
"testmode": False,
1859+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
1860+
"company": {
1861+
"registration_number": "12345678",
1862+
"vat_number": "NL123456789B01",
1863+
},
1864+
"card_token": "tkn_12345",
1865+
"voucher_number": "1234567890",
1866+
"voucher_pin": "1234",
1867+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
1868+
"digital_goods": True,
1869+
"customer_reference": "1234567890",
1870+
"terminal_id": "term_1234567890",
17931871
})
17941872

17951873
# Handle response
@@ -1968,6 +2046,7 @@ with ClientSDK(
19682046

19692047
The default server can be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
19702048
```python
2049+
from datetime import date
19712050
import mollie
19722051
from mollie import ClientSDK
19732052
import os
@@ -2202,6 +2281,18 @@ with ClientSDK(
22022281
"profile_id": "pfl_5B8cwPMGnU",
22032282
"due_date": "2025-01-01",
22042283
"testmode": False,
2284+
"apple_pay_payment_token": "{\"paymentData\": {\"version\": \"EC_v1\", \"data\": \"vK3BbrCbI/....\"}}",
2285+
"company": {
2286+
"registration_number": "12345678",
2287+
"vat_number": "NL123456789B01",
2288+
},
2289+
"card_token": "tkn_12345",
2290+
"voucher_number": "1234567890",
2291+
"voucher_pin": "1234",
2292+
"consumer_date_of_birth": date.fromisoformat("2000-01-01"),
2293+
"digital_goods": True,
2294+
"customer_reference": "1234567890",
2295+
"terminal_id": "term_1234567890",
22052296
})
22062297

22072298
# Handle response

0 commit comments

Comments
 (0)