mollie-api-py 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mollie/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mollie"
6
- __version__: str = "1.0.0"
6
+ __version__: str = "1.0.1"
7
7
  __openapi_doc_version__: str = "1.0.0"
8
8
  __gen_version__: str = "2.730.5"
9
- __user_agent__: str = "speakeasy-sdk/python 1.0.0 2.730.5 1.0.0 mollie"
9
+ __user_agent__: str = "speakeasy-sdk/python 1.0.1 2.730.5 1.0.0 mollie"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
mollie/models/__init__.py CHANGED
@@ -1191,7 +1191,7 @@ if TYPE_CHECKING:
1191
1191
  MandateResponseTypedDict,
1192
1192
  )
1193
1193
  from .metadata import Metadata, MetadataTypedDict
1194
- from .method import Method
1194
+ from .method_enum import MethodEnum
1195
1195
  from .method_include_wallets_parameter import MethodIncludeWalletsParameter
1196
1196
  from .method_resource_parameter import MethodResourceParameter
1197
1197
  from .method_response import MethodResponse
@@ -1262,6 +1262,8 @@ if TYPE_CHECKING:
1262
1262
  from .payment_request import (
1263
1263
  Company,
1264
1264
  CompanyTypedDict,
1265
+ Method,
1266
+ MethodTypedDict,
1265
1267
  PaymentRequest,
1266
1268
  PaymentRequestApplicationFee,
1267
1269
  PaymentRequestApplicationFeeTypedDict,
@@ -1269,6 +1271,7 @@ if TYPE_CHECKING:
1269
1271
  PaymentRequestBillingAddressTypedDict,
1270
1272
  PaymentRequestLine,
1271
1273
  PaymentRequestLineTypedDict,
1274
+ PaymentRequestMethodEnum,
1272
1275
  PaymentRequestTypedDict,
1273
1276
  )
1274
1277
  from .payment_response import (
@@ -2429,10 +2432,12 @@ __all__ = [
2429
2432
  "Metadata",
2430
2433
  "MetadataTypedDict",
2431
2434
  "Method",
2435
+ "MethodEnum",
2432
2436
  "MethodIncludeWalletsParameter",
2433
2437
  "MethodResourceParameter",
2434
2438
  "MethodResponse",
2435
2439
  "MethodStatus",
2440
+ "MethodTypedDict",
2436
2441
  "Mode",
2437
2442
  "NoResponseError",
2438
2443
  "OnboardingVatRegulation",
@@ -2499,6 +2504,7 @@ __all__ = [
2499
2504
  "PaymentRequestBillingAddressTypedDict",
2500
2505
  "PaymentRequestLine",
2501
2506
  "PaymentRequestLineTypedDict",
2507
+ "PaymentRequestMethodEnum",
2502
2508
  "PaymentRequestTypedDict",
2503
2509
  "PaymentResponse",
2504
2510
  "PaymentResponseAmountCaptured",
@@ -3703,7 +3709,7 @@ _dynamic_imports: dict[str, str] = {
3703
3709
  "MandateResponseTypedDict": ".mandate_response",
3704
3710
  "Metadata": ".metadata",
3705
3711
  "MetadataTypedDict": ".metadata",
3706
- "Method": ".method",
3712
+ "MethodEnum": ".method_enum",
3707
3713
  "MethodIncludeWalletsParameter": ".method_include_wallets_parameter",
3708
3714
  "MethodResourceParameter": ".method_resource_parameter",
3709
3715
  "MethodResponse": ".method_response",
@@ -3755,6 +3761,8 @@ _dynamic_imports: dict[str, str] = {
3755
3761
  "PaymentMethod": ".payment_method",
3756
3762
  "Company": ".payment_request",
3757
3763
  "CompanyTypedDict": ".payment_request",
3764
+ "Method": ".payment_request",
3765
+ "MethodTypedDict": ".payment_request",
3758
3766
  "PaymentRequest": ".payment_request",
3759
3767
  "PaymentRequestApplicationFee": ".payment_request",
3760
3768
  "PaymentRequestApplicationFeeTypedDict": ".payment_request",
@@ -3762,6 +3770,7 @@ _dynamic_imports: dict[str, str] = {
3762
3770
  "PaymentRequestBillingAddressTypedDict": ".payment_request",
3763
3771
  "PaymentRequestLine": ".payment_request",
3764
3772
  "PaymentRequestLineTypedDict": ".payment_request",
3773
+ "PaymentRequestMethodEnum": ".payment_request",
3765
3774
  "PaymentRequestTypedDict": ".payment_request",
3766
3775
  "PaymentResponse": ".payment_response",
3767
3776
  "PaymentResponseAmountCaptured": ".payment_response",
@@ -915,7 +915,7 @@ class EntityBalanceTransactionTypedDict(TypedDict):
915
915
  r"""The entity's date and time of creation, in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format."""
916
916
  deductions: NotRequired[Nullable[AmountNullableTypedDict]]
917
917
  r"""In v2 endpoints, monetary amounts are represented as objects with a `currency` and `value` field."""
918
- context: NotRequired[ContextTypedDict]
918
+ context: NotRequired[Nullable[ContextTypedDict]]
919
919
  r"""Depending on the type of the balance transaction, we will try to give more context about the specific event that
920
920
  triggered it. For example, the context object for a payment transaction will look like
921
921
  `{\"paymentId\": \"tr_5B8cwPMGnU6qLbRvo7qEZo\", \"paymentDescription\": \"Description\"}`.
@@ -988,7 +988,7 @@ class EntityBalanceTransaction(BaseModel):
988
988
  deductions: OptionalNullable[AmountNullable] = UNSET
989
989
  r"""In v2 endpoints, monetary amounts are represented as objects with a `currency` and `value` field."""
990
990
 
991
- context: Optional[Context] = None
991
+ context: OptionalNullable[Context] = UNSET
992
992
  r"""Depending on the type of the balance transaction, we will try to give more context about the specific event that
993
993
  triggered it. For example, the context object for a payment transaction will look like
994
994
  `{\"paymentId\": \"tr_5B8cwPMGnU6qLbRvo7qEZo\", \"paymentDescription\": \"Description\"}`.
@@ -1040,7 +1040,7 @@ class EntityBalanceTransaction(BaseModel):
1040
1040
  @model_serializer(mode="wrap")
1041
1041
  def serialize_model(self, handler):
1042
1042
  optional_fields = ["deductions", "context"]
1043
- nullable_fields = ["deductions"]
1043
+ nullable_fields = ["deductions", "context"]
1044
1044
  null_default_fields = []
1045
1045
 
1046
1046
  serialized = handler(self)
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from enum import Enum
5
5
 
6
6
 
7
- class Method(str, Enum):
7
+ class MethodEnum(str, Enum):
8
8
  r"""Normally, a payment method screen is shown. However, when using this parameter, you can choose a specific payment
9
9
  method and your customer will skip the selection screen and is sent directly to the chosen payment method. The
10
10
  parameter enables you to fully integrate the payment method selection into your website.
@@ -7,17 +7,17 @@ from .entity_payment_route import EntityPaymentRoute, EntityPaymentRouteTypedDic
7
7
  from .line_categories import LineCategories
8
8
  from .locale import Locale
9
9
  from .metadata import Metadata, MetadataTypedDict
10
- from .method import Method
11
10
  from .payment_address import PaymentAddress, PaymentAddressTypedDict
12
11
  from .payment_line_type import PaymentLineType
13
12
  from .recurring_line_item import RecurringLineItem, RecurringLineItemTypedDict
14
13
  from .sequence_type import SequenceType
15
14
  from datetime import date
15
+ from enum import Enum
16
16
  from mollie.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
17
17
  import pydantic
18
18
  from pydantic import model_serializer
19
- from typing import Any, Dict, List, Optional
20
- from typing_extensions import Annotated, NotRequired, TypedDict
19
+ from typing import Any, Dict, List, Optional, Union
20
+ from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
21
21
 
22
22
 
23
23
  class PaymentRequestLineTypedDict(TypedDict):
@@ -256,6 +256,51 @@ class PaymentRequestBillingAddress(BaseModel):
256
256
  """
257
257
 
258
258
 
259
+ class PaymentRequestMethodEnum(str, Enum):
260
+ ALMA = "alma"
261
+ APPLEPAY = "applepay"
262
+ BACS = "bacs"
263
+ BANCOMATPAY = "bancomatpay"
264
+ BANCONTACT = "bancontact"
265
+ BANKTRANSFER = "banktransfer"
266
+ BELFIUS = "belfius"
267
+ BILLIE = "billie"
268
+ BIZUM = "bizum"
269
+ BLIK = "blik"
270
+ CREDITCARD = "creditcard"
271
+ DIRECTDEBIT = "directdebit"
272
+ EPS = "eps"
273
+ GIFTCARD = "giftcard"
274
+ IDEAL = "ideal"
275
+ IN3 = "in3"
276
+ KBC = "kbc"
277
+ KLARNA = "klarna"
278
+ MBWAY = "mbway"
279
+ MOBILEPAY = "mobilepay"
280
+ MULTIBANCO = "multibanco"
281
+ MYBANK = "mybank"
282
+ PAYBYBANK = "paybybank"
283
+ PAYPAL = "paypal"
284
+ PAYSAFECARD = "paysafecard"
285
+ POINTOFSALE = "pointofsale"
286
+ PRZELEWY24 = "przelewy24"
287
+ RIVERTY = "riverty"
288
+ SATISPAY = "satispay"
289
+ SWISH = "swish"
290
+ TRUSTLY = "trustly"
291
+ TWINT = "twint"
292
+ VIPPS = "vipps"
293
+ VOUCHER = "voucher"
294
+
295
+
296
+ MethodTypedDict = TypeAliasType(
297
+ "MethodTypedDict", Union[PaymentRequestMethodEnum, List[Any]]
298
+ )
299
+
300
+
301
+ Method = TypeAliasType("Method", Union[PaymentRequestMethodEnum, List[Any]])
302
+
303
+
259
304
  class PaymentRequestApplicationFeeTypedDict(TypedDict):
260
305
  r"""With Mollie Connect you can charge fees on payments that your app is processing on behalf of other Mollie
261
306
  merchants.
@@ -389,15 +434,7 @@ class PaymentRequestTypedDict(TypedDict):
389
434
  shipping_address: NotRequired[PaymentAddressTypedDict]
390
435
  locale: NotRequired[Nullable[Locale]]
391
436
  r"""Allows you to preset the language to be used."""
392
- method: NotRequired[Nullable[Method]]
393
- r"""Normally, a payment method screen is shown. However, when using this parameter, you can choose a specific payment
394
- method and your customer will skip the selection screen and is sent directly to the chosen payment method. The
395
- parameter enables you to fully integrate the payment method selection into your website.
396
-
397
- You can also specify the methods in an array. By doing so we will still show the payment method selection screen
398
- but will only show the methods specified in the array. For example, you can use this functionality to only show
399
- payment methods from a specific country to your customer `['bancontact', 'belfius']`.
400
- """
437
+ method: NotRequired[Nullable[MethodTypedDict]]
401
438
  issuer: NotRequired[Nullable[str]]
402
439
  r"""**Only relevant for iDEAL, KBC/CBC, gift card, and voucher payments.**
403
440
 
@@ -630,14 +667,6 @@ class PaymentRequest(BaseModel):
630
667
  r"""Allows you to preset the language to be used."""
631
668
 
632
669
  method: OptionalNullable[Method] = UNSET
633
- r"""Normally, a payment method screen is shown. However, when using this parameter, you can choose a specific payment
634
- method and your customer will skip the selection screen and is sent directly to the chosen payment method. The
635
- parameter enables you to fully integrate the payment method selection into your website.
636
-
637
- You can also specify the methods in an array. By doing so we will still show the payment method selection screen
638
- but will only show the methods specified in the array. For example, you can use this functionality to only show
639
- payment methods from a specific country to your customer `['bancontact', 'belfius']`.
640
- """
641
670
 
642
671
  issuer: OptionalNullable[str] = UNSET
643
672
  r"""**Only relevant for iDEAL, KBC/CBC, gift card, and voucher payments.**
@@ -4,7 +4,7 @@ from __future__ import annotations
4
4
  from .billingaddress import BillingAddress, BillingAddressTypedDict
5
5
  from .locale import Locale
6
6
  from .metadata import Metadata, MetadataTypedDict
7
- from .method import Method
7
+ from .method_enum import MethodEnum
8
8
  from .payment_address import PaymentAddress, PaymentAddressTypedDict
9
9
  from mollie.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
10
10
  from mollie.utils import (
@@ -61,7 +61,7 @@ class UpdatePaymentRequestBodyTypedDict(TypedDict):
61
61
  r"""Provide any data you like, for example a string or a JSON object. We will save the data alongside the entity. Whenever
62
62
  you fetch the entity with our API, we will also include the metadata. You can use up to approximately 1kB.
63
63
  """
64
- method: NotRequired[Nullable[Method]]
64
+ method: NotRequired[Nullable[MethodEnum]]
65
65
  r"""Normally, a payment method screen is shown. However, when using this parameter, you can choose a specific payment
66
66
  method and your customer will skip the selection screen and is sent directly to the chosen payment method. The
67
67
  parameter enables you to fully integrate the payment method selection into your website.
@@ -174,7 +174,7 @@ class UpdatePaymentRequestBody(BaseModel):
174
174
  you fetch the entity with our API, we will also include the metadata. You can use up to approximately 1kB.
175
175
  """
176
176
 
177
- method: OptionalNullable[Method] = UNSET
177
+ method: OptionalNullable[MethodEnum] = UNSET
178
178
  r"""Normally, a payment method screen is shown. However, when using this parameter, you can choose a specific payment
179
179
  method and your customer will skip the selection screen and is sent directly to the chosen payment method. The
180
180
  parameter enables you to fully integrate the payment method selection into your website.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mollie-api-py
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  License-File: LICENSE.md
6
6
  Author: Speakeasy
@@ -4,7 +4,7 @@ mollie/_hooks/mollie_hooks.py,sha256=xvZt6PNt3AWH9h8dnuXvlmtauGBMD9fQnZuc4POe9Es
4
4
  mollie/_hooks/registration.py,sha256=J8foUfPGbkJa3va864Q7iXYYK4CpxSaix6nAxw0w7-Y,748
5
5
  mollie/_hooks/sdkhooks.py,sha256=XSStdz5qEmh-Mwt53kk1_nVrtAz1_EZVbHymUEOTdDE,2556
6
6
  mollie/_hooks/types.py,sha256=JKrqkXMXwcNaCf2_hu0yX8Bi7GsHbVBrQDnfRTSws7w,3041
7
- mollie/_version.py,sha256=Pnz18mKvjb8n2FFXaS1AzDMJPF4SQIMd04g_YwSyuoQ,454
7
+ mollie/_version.py,sha256=zm0fT1ModRFXQy1v2-rpnSDXbYxwxmLiye0HmjluAr0,454
8
8
  mollie/balance_transfers.py,sha256=tbCrOJ2PdpCSGM-VLANF1Y7MT3D01XIEw6hwWWYkwDQ,29161
9
9
  mollie/balances.py,sha256=b8m-wxFhFu8Oww6ok3s3934OzW-TcFUr6iiod2b1tFc,49290
10
10
  mollie/basesdk.py,sha256=q24JMCy4yFLPP2cLt_-S8_4CTd8-h20OLctAVMIBi0w,12168
@@ -19,7 +19,7 @@ mollie/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
19
19
  mollie/invoices.py,sha256=yQz1eyOm_b7G4--RaTFCUAb6nqw9QJ1vAQhmeJzYiak,18166
20
20
  mollie/mandates.py,sha256=PVMXvDUQQPxeHz5sTNqFsNHPVjIjOD7uf4zAJeDGVdU,38701
21
21
  mollie/methods.py,sha256=0nhBJBpm_ydEtGzuJub4NahnVGGHPMD3YZPDXTvbhug,43044
22
- mollie/models/__init__.py,sha256=5OJW4vt3YXsBERb2B2BQiWJjonODNX_CIYat2kpNhOI,170991
22
+ mollie/models/__init__.py,sha256=2gcR2by0LS0b3iKUioTjhnkPB7kScuqkpakcUWqpprU,171286
23
23
  mollie/models/address.py,sha256=zkgpQcCPnKe6BQ-JqjBhN6YlzTgVyCreQFvAeNMXFuM,1035
24
24
  mollie/models/amount.py,sha256=ThsX_CGdD-_vIIW_cFR7ernByR5jmZjoSnxFSMixCaE,923
25
25
  mollie/models/amount_nullable.py,sha256=zzCJtAd3hWqXPpwrGvu8QoiGxeKff3i5SEP29orBuWg,813
@@ -76,7 +76,7 @@ mollie/models/delete_values_sales_invoice.py,sha256=RSZjCHvhpV7-ny9nX9Csi0QvEdsy
76
76
  mollie/models/delete_webhookop.py,sha256=tQIz-ZOOL6calqs5LDx8ovh7vJS4Go6KPVWuIas98oM,1878
77
77
  mollie/models/entity_balance.py,sha256=hbXlpVc4jx85yygnZqRwZ_GjQNMwqYQ0J8eIX0EhDBw,12562
78
78
  mollie/models/entity_balance_report.py,sha256=Ra7lZd2HiD0zyLnk61Gg-RcNdr4sm8iCmxAQbY9op3o,19948
79
- mollie/models/entity_balance_transaction.py,sha256=30aUzZP5yTmxx0mB0bn3CuxZk2rUVSJrzFl8cy5GhLY,42505
79
+ mollie/models/entity_balance_transaction.py,sha256=tth40rcax1mX-EI39SM8c1rbiP_Brj97st5Z_XW1n3A,42535
80
80
  mollie/models/entity_balance_transfer.py,sha256=Qlb0qSI_BYEYWH3h7k14ZJTP7SKkS6f8chq3koPyZD4,2660
81
81
  mollie/models/entity_balance_transfer_party.py,sha256=Iw_l9KZMPoICdPdcTQckTiyyL9N7Zbn57uxfMwm4gz0,1130
82
82
  mollie/models/entity_balance_transfer_party_response.py,sha256=se6XBu3gVQ0j6V38U5ahzIwToepSDUR0nAtjSkJTMfQ,1360
@@ -193,7 +193,7 @@ mollie/models/mandate_method_response.py,sha256=Ey1S-LsD-yhTrpqHiy-QdsU5ppyK_U0d
193
193
  mollie/models/mandate_request.py,sha256=xoXJeUh6FGqg6Mnp_Vo8uxfBJDDQXoOknUmQDpSL75I,6152
194
194
  mollie/models/mandate_response.py,sha256=PXqAct1eo9vlbCLSfFWgF0IxCs_3y3U9RM6zxC6S3M4,10496
195
195
  mollie/models/metadata.py,sha256=icL45r7_c15g4Niibdkz2fezDGH4M2mpLPF1M-nbjkY,842
196
- mollie/models/method.py,sha256=nL3aHjRRcFLP_E--Q4OE7k1mnr0vPZRK_PK9QTBkGqE,1642
196
+ mollie/models/method_enum.py,sha256=f-bJPTAONGtMn1iDD18pI7NDLqXxVR3kJcwlwdroADQ,1646
197
197
  mollie/models/method_include_wallets_parameter.py,sha256=0DOFxiIYiCXN9u50cb-tDe3lUBS56Uu-VmbsEEh2lTk,206
198
198
  mollie/models/method_resource_parameter.py,sha256=jez8oh03RJOsKyNV35iDQYKb1vwEHa2e4jKDen_AJtw,222
199
199
  mollie/models/method_response.py,sha256=bq58bWYzRXo1VzlmSswvqxLJhev0pr9EpJdmGXTvYdQ,1982
@@ -225,7 +225,7 @@ mollie/models/payment_link_sequence_type.py,sha256=aYPeiv5T4uQbEsmZkVzqEyT0ZvFxn
225
225
  mollie/models/payment_link_sequence_type_response.py,sha256=eJflnQQEyan8XF50GmOSVq7NqLgZyo786SueJQg2LL0,279
226
226
  mollie/models/payment_list_routesop.py,sha256=DcxZ34Zd_WjM50UpEAZQOr7jq_cVTRg6MDyJ24rR650,5856
227
227
  mollie/models/payment_method.py,sha256=qNAJhRTpfCU3i3blGfNAaJ76pZhOkjX8R8wRp4JboHw,1367
228
- mollie/models/payment_request.py,sha256=QiX979yAhPB3LzBoRDTlgjZm6Yikzbcj2x98EclRiRY,43231
228
+ mollie/models/payment_request.py,sha256=1eMpagevTzFnkghGgrhBflFQODs9Ah2WhMVYwpOdWZw,42982
229
229
  mollie/models/payment_response.py,sha256=WQ34iLT1KwRz3dJhODIuzT4YgQIgezWGtYoASnbhVV0,86702
230
230
  mollie/models/profile_request.py,sha256=Umllo_8zGRdcdP6wJ4arjA9cqNsPfX4XbVvT6S5n6ng,2661
231
231
  mollie/models/profile_response.py,sha256=fo76HP527MZMCB-092Wshqbn948fqa_r9GgmW9Hv8dI,9186
@@ -285,7 +285,7 @@ mollie/models/terminal_model.py,sha256=qYsdNuAe4i7tGdqfIC_xjsLzWsQt--oyC3OBopxG9
285
285
  mollie/models/test_webhookop.py,sha256=jQXhjd0v4s42clV9HcIT_86Puy9sfRvjMrdmSW_5j0s,2042
286
286
  mollie/models/update_customerop.py,sha256=mGjZ914r6aJ1ngz4drvtP5R33icxjstWREUURY0vYwE,1451
287
287
  mollie/models/update_payment_linkop.py,sha256=lH9y_4k6MuXF4r9Cb4RfCO0uPs49T_Q5RY8000MY69o,6811
288
- mollie/models/update_paymentop.py,sha256=mMJhQHi7oYqHGfBa3kqfBAbiehgj6Qmj3_YctilYCG8,15595
288
+ mollie/models/update_paymentop.py,sha256=yH3cFNni8DbApxbmtS7PVglDLLGVgdewyhmUlWZ2el0,15612
289
289
  mollie/models/update_profileop.py,sha256=ALi5q5grTh-sXNfc1-2dz0SIXJLhF4XWHQxGoBvgvX4,5349
290
290
  mollie/models/update_sales_invoiceop.py,sha256=l2lhhtuA4orwdLOL2Cn0h5pPCnd0k8NDCmGzMvrWBW4,1529
291
291
  mollie/models/update_subscriptionop.py,sha256=jUZIO4PQqaN28Y_YGd4qEpgxBF2ISYMxzVmAH_fS1Uk,7589
@@ -331,7 +331,7 @@ mollie/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
331
331
  mollie/wallets.py,sha256=Sz8KRUq8TwWxSyYktdeaIGQCAwqBz8Vhnv0GWDfBTRs,12240
332
332
  mollie/webhook_events.py,sha256=RiDRH4Dbu7h7LJFljem2COP3ABtRppi8xALRpCIBoHM,8907
333
333
  mollie/webhooks.py,sha256=p9wFU4ztjiZE-kxByBJzJuysRKjeY6Ybw2B1ZZiXwa8,54089
334
- mollie_api_py-1.0.0.dist-info/METADATA,sha256=eJsyu48cdAzpWwAw5GZuXAimGG_GgdLY_E6enLuDUGk,40242
335
- mollie_api_py-1.0.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
336
- mollie_api_py-1.0.0.dist-info/licenses/LICENSE.md,sha256=SGg2WzlJYIta4I_BlrvHizir1Lq0UNCqIJGj-MQPZ1s,1295
337
- mollie_api_py-1.0.0.dist-info/RECORD,,
334
+ mollie_api_py-1.0.1.dist-info/METADATA,sha256=Zwpw6KJbkYesFC7vsFphSZ44bGj9AcHoTu0EgCyHsz4,40242
335
+ mollie_api_py-1.0.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
336
+ mollie_api_py-1.0.1.dist-info/licenses/LICENSE.md,sha256=SGg2WzlJYIta4I_BlrvHizir1Lq0UNCqIJGj-MQPZ1s,1295
337
+ mollie_api_py-1.0.1.dist-info/RECORD,,