mollie-api-py 1.0.3__py3-none-any.whl → 1.0.4__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 +2 -2
- mollie/invoices.py +0 -6
- mollie/models/list_invoicesop.py +1 -10
- mollie/models/status_reason.py +1 -0
- {mollie_api_py-1.0.3.dist-info → mollie_api_py-1.0.4.dist-info}/METADATA +1 -1
- {mollie_api_py-1.0.3.dist-info → mollie_api_py-1.0.4.dist-info}/RECORD +8 -8
- {mollie_api_py-1.0.3.dist-info → mollie_api_py-1.0.4.dist-info}/WHEEL +0 -0
- {mollie_api_py-1.0.3.dist-info → mollie_api_py-1.0.4.dist-info}/licenses/LICENSE.md +0 -0
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.
|
|
6
|
+
__version__: str = "1.0.4"
|
|
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.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.0.4 2.730.5 1.0.0 mollie"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
mollie/invoices.py
CHANGED
|
@@ -15,7 +15,6 @@ class Invoices(BaseSDK):
|
|
|
15
15
|
*,
|
|
16
16
|
reference: OptionalNullable[str] = UNSET,
|
|
17
17
|
year: OptionalNullable[str] = UNSET,
|
|
18
|
-
month: OptionalNullable[str] = UNSET,
|
|
19
18
|
from_: OptionalNullable[str] = UNSET,
|
|
20
19
|
limit: OptionalNullable[int] = UNSET,
|
|
21
20
|
sort: Optional[models.Sorting] = None,
|
|
@@ -34,7 +33,6 @@ class Invoices(BaseSDK):
|
|
|
34
33
|
|
|
35
34
|
:param reference: Filter for an invoice with a specific invoice reference, for example `2024.10000`.
|
|
36
35
|
:param year: Filter for invoices of a specific year, for example `2024`.
|
|
37
|
-
:param month: Filter for invoices of a specific month, for example `01`.
|
|
38
36
|
:param from_: Provide an ID to start the result set from the item with the given ID and onwards. This allows you to paginate the result set.
|
|
39
37
|
:param limit: The maximum number of items to return. Defaults to 50 items.
|
|
40
38
|
:param sort: Used for setting the direction of the result set. Defaults to descending order, meaning the results are ordered from newest to oldest.
|
|
@@ -57,7 +55,6 @@ class Invoices(BaseSDK):
|
|
|
57
55
|
request = models.ListInvoicesRequest(
|
|
58
56
|
reference=reference,
|
|
59
57
|
year=year,
|
|
60
|
-
month=month,
|
|
61
58
|
from_=from_,
|
|
62
59
|
limit=limit,
|
|
63
60
|
sort=sort,
|
|
@@ -127,7 +124,6 @@ class Invoices(BaseSDK):
|
|
|
127
124
|
*,
|
|
128
125
|
reference: OptionalNullable[str] = UNSET,
|
|
129
126
|
year: OptionalNullable[str] = UNSET,
|
|
130
|
-
month: OptionalNullable[str] = UNSET,
|
|
131
127
|
from_: OptionalNullable[str] = UNSET,
|
|
132
128
|
limit: OptionalNullable[int] = UNSET,
|
|
133
129
|
sort: Optional[models.Sorting] = None,
|
|
@@ -146,7 +142,6 @@ class Invoices(BaseSDK):
|
|
|
146
142
|
|
|
147
143
|
:param reference: Filter for an invoice with a specific invoice reference, for example `2024.10000`.
|
|
148
144
|
:param year: Filter for invoices of a specific year, for example `2024`.
|
|
149
|
-
:param month: Filter for invoices of a specific month, for example `01`.
|
|
150
145
|
:param from_: Provide an ID to start the result set from the item with the given ID and onwards. This allows you to paginate the result set.
|
|
151
146
|
:param limit: The maximum number of items to return. Defaults to 50 items.
|
|
152
147
|
:param sort: Used for setting the direction of the result set. Defaults to descending order, meaning the results are ordered from newest to oldest.
|
|
@@ -169,7 +164,6 @@ class Invoices(BaseSDK):
|
|
|
169
164
|
request = models.ListInvoicesRequest(
|
|
170
165
|
reference=reference,
|
|
171
166
|
year=year,
|
|
172
|
-
month=month,
|
|
173
167
|
from_=from_,
|
|
174
168
|
limit=limit,
|
|
175
169
|
sort=sort,
|
mollie/models/list_invoicesop.py
CHANGED
|
@@ -19,8 +19,6 @@ class ListInvoicesRequestTypedDict(TypedDict):
|
|
|
19
19
|
"""
|
|
20
20
|
year: NotRequired[Nullable[str]]
|
|
21
21
|
r"""Filter for invoices of a specific year, for example `2024`."""
|
|
22
|
-
month: NotRequired[Nullable[str]]
|
|
23
|
-
r"""Filter for invoices of a specific month, for example `01`."""
|
|
24
22
|
from_: NotRequired[Nullable[str]]
|
|
25
23
|
r"""Provide an ID to start the result set from the item with the given ID and onwards. This allows you to paginate the
|
|
26
24
|
result set.
|
|
@@ -50,12 +48,6 @@ class ListInvoicesRequest(BaseModel):
|
|
|
50
48
|
] = UNSET
|
|
51
49
|
r"""Filter for invoices of a specific year, for example `2024`."""
|
|
52
50
|
|
|
53
|
-
month: Annotated[
|
|
54
|
-
OptionalNullable[str],
|
|
55
|
-
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
56
|
-
] = UNSET
|
|
57
|
-
r"""Filter for invoices of a specific month, for example `01`."""
|
|
58
|
-
|
|
59
51
|
from_: Annotated[
|
|
60
52
|
OptionalNullable[str],
|
|
61
53
|
pydantic.Field(alias="from"),
|
|
@@ -91,13 +83,12 @@ class ListInvoicesRequest(BaseModel):
|
|
|
91
83
|
optional_fields = [
|
|
92
84
|
"reference",
|
|
93
85
|
"year",
|
|
94
|
-
"month",
|
|
95
86
|
"from",
|
|
96
87
|
"limit",
|
|
97
88
|
"sort",
|
|
98
89
|
"idempotency-key",
|
|
99
90
|
]
|
|
100
|
-
nullable_fields = ["reference", "year", "
|
|
91
|
+
nullable_fields = ["reference", "year", "from", "limit"]
|
|
101
92
|
null_default_fields = []
|
|
102
93
|
|
|
103
94
|
serialized = handler(self)
|
mollie/models/status_reason.py
CHANGED
|
@@ -139,6 +139,7 @@ class Code(str, Enum):
|
|
|
139
139
|
LOGIN_FAILED_UNKNOWN_USER = "login_failed_unknown_user"
|
|
140
140
|
LOGIN_FAILED_INVALID_PASSWORD = "login_failed_invalid_password"
|
|
141
141
|
INVALID_EAN_CODE = "invalid_ean_code"
|
|
142
|
+
CARD_ERROR = "card_error"
|
|
142
143
|
|
|
143
144
|
|
|
144
145
|
class StatusReasonTypedDict(TypedDict):
|
|
@@ -4,7 +4,7 @@ mollie/_hooks/mollie_hooks.py,sha256=c9l0SCJmT_o6mXzl4WRK8fIOaTox2nrPhuGpN4aso2E
|
|
|
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=
|
|
7
|
+
mollie/_version.py,sha256=9enz_derWqHx0g-aUKzC34wQHEydCvp776u8UobPDT8,454
|
|
8
8
|
mollie/balance_transfers.py,sha256=vDy2v7ezxTv0Atpuv0M9lGXyvQM6KPu_rd2D02CIKIk,29291
|
|
9
9
|
mollie/balances.py,sha256=ngc5ky8TWB-K2lVFuzZQCwcNdWH6m-KPIznW4qIE1qo,49314
|
|
10
10
|
mollie/basesdk.py,sha256=q24JMCy4yFLPP2cLt_-S8_4CTd8-h20OLctAVMIBi0w,12168
|
|
@@ -16,7 +16,7 @@ mollie/clients.py,sha256=KEOyGFwCdbssJcWu7IpkrFAnPxeGkoyt4Ms4KFJtSiY,17239
|
|
|
16
16
|
mollie/customers.py,sha256=ksxAonl_4ajtVuwq4oRA8vqFv9607y5YKd3G2717pOk,67846
|
|
17
17
|
mollie/delayed_routing.py,sha256=xECygSW1o42qrEBcJj92O6T5bnZjboRcqvOwTqHYZcQ,18189
|
|
18
18
|
mollie/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
19
|
-
mollie/invoices.py,sha256=
|
|
19
|
+
mollie/invoices.py,sha256=GAnnYpOFQHMV-ejQA0cqRxdANGZvdOGr2M_WXqtvAzE,17886
|
|
20
20
|
mollie/mandates.py,sha256=PVMXvDUQQPxeHz5sTNqFsNHPVjIjOD7uf4zAJeDGVdU,38701
|
|
21
21
|
mollie/methods.py,sha256=G38DTFLyWe0OuW1qnMjIymDgqfT9dKEgOgF6FQR_o3Y,43126
|
|
22
22
|
mollie/models/__init__.py,sha256=zphRFnFppWy8zeLU2YAGvv20FqGeKWlRmZpGEhQJOvs,171250
|
|
@@ -160,7 +160,7 @@ mollie/models/list_entity_refund.py,sha256=L56T1-nqyvJfjgrMzoanGxvtl6F2oOcn5EVdO
|
|
|
160
160
|
mollie/models/list_entity_settlement.py,sha256=dUsAdldPYxKCmuK74YgVHuad2ucfWXB37Rrn8GjF8KI,18407
|
|
161
161
|
mollie/models/list_entity_terminal.py,sha256=NOyALnZKWmPczFPjXxf-E24S5_MyTQQmqVVbw_kamCI,6881
|
|
162
162
|
mollie/models/list_entity_webhook.py,sha256=NmEtm0UT_GwTXzIZ8qsNDOUl-sIlRYMVNXfudNaJZRc,4326
|
|
163
|
-
mollie/models/list_invoicesop.py,sha256=
|
|
163
|
+
mollie/models/list_invoicesop.py,sha256=rp2sAPqQhgvdKgfcsU1sZB1D6PGkML9om0n3O4rTRZQ,6196
|
|
164
164
|
mollie/models/list_links.py,sha256=JKrh8XqH0y7DpCVbvRyr0QZGysExQKGua8DTWC0dqcQ,2702
|
|
165
165
|
mollie/models/list_mandate_response.py,sha256=Yfd7gRMinXaqPZMgxG0jQlbT1r2P_f9QUtR-m-vXV8U,10302
|
|
166
166
|
mollie/models/list_mandatesop.py,sha256=1ntExLhI16gOZMOvltpUymwfh5YPxw62Y4c0w4tNtxw,7239
|
|
@@ -273,7 +273,7 @@ mollie/models/security.py,sha256=1eEh_HvaMZX76P59RaLdlIqlRwOjJCOCiljgjaqRJew,934
|
|
|
273
273
|
mollie/models/sequence_type.py,sha256=ZJEX_Hx0HSSS86Tmzf1GrTdGPcfYTl9p23X0CNeLZRU,233
|
|
274
274
|
mollie/models/sequence_type_response.py,sha256=V2vxnfe8h0u_LbKWP4KZyecGmJYgbybDqn7AhltnUKk,296
|
|
275
275
|
mollie/models/sorting.py,sha256=7I9WL2U6kCAVWsJeZ_BSbEJq6SDypqHwMTUf6efu6hk,192
|
|
276
|
-
mollie/models/status_reason.py,sha256=
|
|
276
|
+
mollie/models/status_reason.py,sha256=xgdbfQjovchZjp6STSbjGGXLRnH1ZSHt5KHA5qWhl_k,7632
|
|
277
277
|
mollie/models/sub_group.py,sha256=HsemaVmb0WaXd2c3uQOxb4Wqg-HObJ0kvmi2SEC2h_Y,1875
|
|
278
278
|
mollie/models/sub_totals.py,sha256=figdUzIxZwiuZahJ1Ny05pdVIu1uvqIZiOm6874fKq4,3953
|
|
279
279
|
mollie/models/submit_onboarding_dataop.py,sha256=1oEWKamt_s183ldoTln0RT7gEINZ8ClE9aTSlRH7FR8,7655
|
|
@@ -332,7 +332,7 @@ mollie/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
|
332
332
|
mollie/wallets.py,sha256=Sz8KRUq8TwWxSyYktdeaIGQCAwqBz8Vhnv0GWDfBTRs,12240
|
|
333
333
|
mollie/webhook_events.py,sha256=Hgo-KY0TzRlu8jFAoYCpCpAzWcmSYURRQfmsxgiM8ac,9001
|
|
334
334
|
mollie/webhooks.py,sha256=r2jKIBeUofuVHGTEvaOaLYLZC6kzsQRdNBPdXAPFSbU,54185
|
|
335
|
-
mollie_api_py-1.0.
|
|
336
|
-
mollie_api_py-1.0.
|
|
337
|
-
mollie_api_py-1.0.
|
|
338
|
-
mollie_api_py-1.0.
|
|
335
|
+
mollie_api_py-1.0.4.dist-info/METADATA,sha256=XgRzWYJelcysR2qyqBPjNSVPRL1OQbI0F8OTQszMyDY,40242
|
|
336
|
+
mollie_api_py-1.0.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
337
|
+
mollie_api_py-1.0.4.dist-info/licenses/LICENSE.md,sha256=SGg2WzlJYIta4I_BlrvHizir1Lq0UNCqIJGj-MQPZ1s,1295
|
|
338
|
+
mollie_api_py-1.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|