dodopayments 1.53.5__py3-none-any.whl → 1.55.7__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.
Potentially problematic release.
This version of dodopayments might be problematic. Click here for more details.
- dodopayments/_version.py +1 -1
- dodopayments/resources/checkout_sessions.py +8 -0
- dodopayments/resources/payments.py +8 -0
- dodopayments/resources/payouts.py +19 -0
- dodopayments/resources/subscriptions.py +8 -0
- dodopayments/types/checkout_session_create_params.py +6 -0
- dodopayments/types/customer_limited_details.py +5 -0
- dodopayments/types/new_customer_param.py +7 -1
- dodopayments/types/payment_create_params.py +3 -0
- dodopayments/types/payout_list_params.py +11 -1
- dodopayments/types/subscription.py +3 -0
- dodopayments/types/subscription_create_params.py +3 -0
- dodopayments/types/subscription_list_response.py +3 -0
- {dodopayments-1.53.5.dist-info → dodopayments-1.55.7.dist-info}/METADATA +1 -1
- {dodopayments-1.53.5.dist-info → dodopayments-1.55.7.dist-info}/RECORD +17 -17
- {dodopayments-1.53.5.dist-info → dodopayments-1.55.7.dist-info}/WHEEL +0 -0
- {dodopayments-1.53.5.dist-info → dodopayments-1.55.7.dist-info}/licenses/LICENSE +0 -0
dodopayments/_version.py
CHANGED
|
@@ -58,6 +58,7 @@ class CheckoutSessionsResource(SyncAPIResource):
|
|
|
58
58
|
customization: checkout_session_create_params.Customization | Omit = omit,
|
|
59
59
|
discount_code: Optional[str] | Omit = omit,
|
|
60
60
|
feature_flags: checkout_session_create_params.FeatureFlags | Omit = omit,
|
|
61
|
+
force_3ds: Optional[bool] | Omit = omit,
|
|
61
62
|
metadata: Optional[Dict[str, str]] | Omit = omit,
|
|
62
63
|
return_url: Optional[str] | Omit = omit,
|
|
63
64
|
show_saved_payment_methods: bool | Omit = omit,
|
|
@@ -89,6 +90,8 @@ class CheckoutSessionsResource(SyncAPIResource):
|
|
|
89
90
|
|
|
90
91
|
customization: Customization for the checkout session page
|
|
91
92
|
|
|
93
|
+
force_3ds: Override merchant default 3DS behaviour for this session
|
|
94
|
+
|
|
92
95
|
metadata: Additional metadata associated with the payment. Defaults to empty if not
|
|
93
96
|
provided.
|
|
94
97
|
|
|
@@ -117,6 +120,7 @@ class CheckoutSessionsResource(SyncAPIResource):
|
|
|
117
120
|
"customization": customization,
|
|
118
121
|
"discount_code": discount_code,
|
|
119
122
|
"feature_flags": feature_flags,
|
|
123
|
+
"force_3ds": force_3ds,
|
|
120
124
|
"metadata": metadata,
|
|
121
125
|
"return_url": return_url,
|
|
122
126
|
"show_saved_payment_methods": show_saved_payment_methods,
|
|
@@ -163,6 +167,7 @@ class AsyncCheckoutSessionsResource(AsyncAPIResource):
|
|
|
163
167
|
customization: checkout_session_create_params.Customization | Omit = omit,
|
|
164
168
|
discount_code: Optional[str] | Omit = omit,
|
|
165
169
|
feature_flags: checkout_session_create_params.FeatureFlags | Omit = omit,
|
|
170
|
+
force_3ds: Optional[bool] | Omit = omit,
|
|
166
171
|
metadata: Optional[Dict[str, str]] | Omit = omit,
|
|
167
172
|
return_url: Optional[str] | Omit = omit,
|
|
168
173
|
show_saved_payment_methods: bool | Omit = omit,
|
|
@@ -194,6 +199,8 @@ class AsyncCheckoutSessionsResource(AsyncAPIResource):
|
|
|
194
199
|
|
|
195
200
|
customization: Customization for the checkout session page
|
|
196
201
|
|
|
202
|
+
force_3ds: Override merchant default 3DS behaviour for this session
|
|
203
|
+
|
|
197
204
|
metadata: Additional metadata associated with the payment. Defaults to empty if not
|
|
198
205
|
provided.
|
|
199
206
|
|
|
@@ -222,6 +229,7 @@ class AsyncCheckoutSessionsResource(AsyncAPIResource):
|
|
|
222
229
|
"customization": customization,
|
|
223
230
|
"discount_code": discount_code,
|
|
224
231
|
"feature_flags": feature_flags,
|
|
232
|
+
"force_3ds": force_3ds,
|
|
225
233
|
"metadata": metadata,
|
|
226
234
|
"return_url": return_url,
|
|
227
235
|
"show_saved_payment_methods": show_saved_payment_methods,
|
|
@@ -63,6 +63,7 @@ class PaymentsResource(SyncAPIResource):
|
|
|
63
63
|
allowed_payment_method_types: Optional[List[PaymentMethodTypes]] | Omit = omit,
|
|
64
64
|
billing_currency: Optional[Currency] | Omit = omit,
|
|
65
65
|
discount_code: Optional[str] | Omit = omit,
|
|
66
|
+
force_3ds: Optional[bool] | Omit = omit,
|
|
66
67
|
metadata: Dict[str, str] | Omit = omit,
|
|
67
68
|
payment_link: Optional[bool] | Omit = omit,
|
|
68
69
|
return_url: Optional[str] | Omit = omit,
|
|
@@ -95,6 +96,8 @@ class PaymentsResource(SyncAPIResource):
|
|
|
95
96
|
|
|
96
97
|
discount_code: Discount Code to apply to the transaction
|
|
97
98
|
|
|
99
|
+
force_3ds: Override merchant default 3DS behaviour for this payment
|
|
100
|
+
|
|
98
101
|
metadata: Additional metadata associated with the payment. Defaults to empty if not
|
|
99
102
|
provided.
|
|
100
103
|
|
|
@@ -126,6 +129,7 @@ class PaymentsResource(SyncAPIResource):
|
|
|
126
129
|
"allowed_payment_method_types": allowed_payment_method_types,
|
|
127
130
|
"billing_currency": billing_currency,
|
|
128
131
|
"discount_code": discount_code,
|
|
132
|
+
"force_3ds": force_3ds,
|
|
129
133
|
"metadata": metadata,
|
|
130
134
|
"payment_link": payment_link,
|
|
131
135
|
"return_url": return_url,
|
|
@@ -314,6 +318,7 @@ class AsyncPaymentsResource(AsyncAPIResource):
|
|
|
314
318
|
allowed_payment_method_types: Optional[List[PaymentMethodTypes]] | Omit = omit,
|
|
315
319
|
billing_currency: Optional[Currency] | Omit = omit,
|
|
316
320
|
discount_code: Optional[str] | Omit = omit,
|
|
321
|
+
force_3ds: Optional[bool] | Omit = omit,
|
|
317
322
|
metadata: Dict[str, str] | Omit = omit,
|
|
318
323
|
payment_link: Optional[bool] | Omit = omit,
|
|
319
324
|
return_url: Optional[str] | Omit = omit,
|
|
@@ -346,6 +351,8 @@ class AsyncPaymentsResource(AsyncAPIResource):
|
|
|
346
351
|
|
|
347
352
|
discount_code: Discount Code to apply to the transaction
|
|
348
353
|
|
|
354
|
+
force_3ds: Override merchant default 3DS behaviour for this payment
|
|
355
|
+
|
|
349
356
|
metadata: Additional metadata associated with the payment. Defaults to empty if not
|
|
350
357
|
provided.
|
|
351
358
|
|
|
@@ -377,6 +384,7 @@ class AsyncPaymentsResource(AsyncAPIResource):
|
|
|
377
384
|
"allowed_payment_method_types": allowed_payment_method_types,
|
|
378
385
|
"billing_currency": billing_currency,
|
|
379
386
|
"discount_code": discount_code,
|
|
387
|
+
"force_3ds": force_3ds,
|
|
380
388
|
"metadata": metadata,
|
|
381
389
|
"payment_link": payment_link,
|
|
382
390
|
"return_url": return_url,
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
from typing import Union
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
|
|
5
8
|
import httpx
|
|
6
9
|
|
|
7
10
|
from ..types import payout_list_params
|
|
@@ -45,6 +48,8 @@ class PayoutsResource(SyncAPIResource):
|
|
|
45
48
|
def list(
|
|
46
49
|
self,
|
|
47
50
|
*,
|
|
51
|
+
created_at_gte: Union[str, datetime] | Omit = omit,
|
|
52
|
+
created_at_lte: Union[str, datetime] | Omit = omit,
|
|
48
53
|
page_number: int | Omit = omit,
|
|
49
54
|
page_size: int | Omit = omit,
|
|
50
55
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -56,6 +61,10 @@ class PayoutsResource(SyncAPIResource):
|
|
|
56
61
|
) -> SyncDefaultPageNumberPagination[PayoutListResponse]:
|
|
57
62
|
"""
|
|
58
63
|
Args:
|
|
64
|
+
created_at_gte: Get payouts created after this time (inclusive)
|
|
65
|
+
|
|
66
|
+
created_at_lte: Get payouts created before this time (inclusive)
|
|
67
|
+
|
|
59
68
|
page_number: Page number default is 0
|
|
60
69
|
|
|
61
70
|
page_size: Page size default is 10 max is 100
|
|
@@ -78,6 +87,8 @@ class PayoutsResource(SyncAPIResource):
|
|
|
78
87
|
timeout=timeout,
|
|
79
88
|
query=maybe_transform(
|
|
80
89
|
{
|
|
90
|
+
"created_at_gte": created_at_gte,
|
|
91
|
+
"created_at_lte": created_at_lte,
|
|
81
92
|
"page_number": page_number,
|
|
82
93
|
"page_size": page_size,
|
|
83
94
|
},
|
|
@@ -111,6 +122,8 @@ class AsyncPayoutsResource(AsyncAPIResource):
|
|
|
111
122
|
def list(
|
|
112
123
|
self,
|
|
113
124
|
*,
|
|
125
|
+
created_at_gte: Union[str, datetime] | Omit = omit,
|
|
126
|
+
created_at_lte: Union[str, datetime] | Omit = omit,
|
|
114
127
|
page_number: int | Omit = omit,
|
|
115
128
|
page_size: int | Omit = omit,
|
|
116
129
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -122,6 +135,10 @@ class AsyncPayoutsResource(AsyncAPIResource):
|
|
|
122
135
|
) -> AsyncPaginator[PayoutListResponse, AsyncDefaultPageNumberPagination[PayoutListResponse]]:
|
|
123
136
|
"""
|
|
124
137
|
Args:
|
|
138
|
+
created_at_gte: Get payouts created after this time (inclusive)
|
|
139
|
+
|
|
140
|
+
created_at_lte: Get payouts created before this time (inclusive)
|
|
141
|
+
|
|
125
142
|
page_number: Page number default is 0
|
|
126
143
|
|
|
127
144
|
page_size: Page size default is 10 max is 100
|
|
@@ -144,6 +161,8 @@ class AsyncPayoutsResource(AsyncAPIResource):
|
|
|
144
161
|
timeout=timeout,
|
|
145
162
|
query=maybe_transform(
|
|
146
163
|
{
|
|
164
|
+
"created_at_gte": created_at_gte,
|
|
165
|
+
"created_at_lte": created_at_lte,
|
|
147
166
|
"page_number": page_number,
|
|
148
167
|
"page_size": page_size,
|
|
149
168
|
},
|
|
@@ -77,6 +77,7 @@ class SubscriptionsResource(SyncAPIResource):
|
|
|
77
77
|
allowed_payment_method_types: Optional[List[PaymentMethodTypes]] | Omit = omit,
|
|
78
78
|
billing_currency: Optional[Currency] | Omit = omit,
|
|
79
79
|
discount_code: Optional[str] | Omit = omit,
|
|
80
|
+
force_3ds: Optional[bool] | Omit = omit,
|
|
80
81
|
metadata: Dict[str, str] | Omit = omit,
|
|
81
82
|
on_demand: Optional[OnDemandSubscriptionParam] | Omit = omit,
|
|
82
83
|
payment_link: Optional[bool] | Omit = omit,
|
|
@@ -115,6 +116,8 @@ class SubscriptionsResource(SyncAPIResource):
|
|
|
115
116
|
|
|
116
117
|
discount_code: Discount Code to apply to the subscription
|
|
117
118
|
|
|
119
|
+
force_3ds: Override merchant default 3DS behaviour for this subscription
|
|
120
|
+
|
|
118
121
|
metadata: Additional metadata for the subscription Defaults to empty if not specified
|
|
119
122
|
|
|
120
123
|
payment_link: If true, generates a payment link. Defaults to false if not specified.
|
|
@@ -149,6 +152,7 @@ class SubscriptionsResource(SyncAPIResource):
|
|
|
149
152
|
"allowed_payment_method_types": allowed_payment_method_types,
|
|
150
153
|
"billing_currency": billing_currency,
|
|
151
154
|
"discount_code": discount_code,
|
|
155
|
+
"force_3ds": force_3ds,
|
|
152
156
|
"metadata": metadata,
|
|
153
157
|
"on_demand": on_demand,
|
|
154
158
|
"payment_link": payment_link,
|
|
@@ -569,6 +573,7 @@ class AsyncSubscriptionsResource(AsyncAPIResource):
|
|
|
569
573
|
allowed_payment_method_types: Optional[List[PaymentMethodTypes]] | Omit = omit,
|
|
570
574
|
billing_currency: Optional[Currency] | Omit = omit,
|
|
571
575
|
discount_code: Optional[str] | Omit = omit,
|
|
576
|
+
force_3ds: Optional[bool] | Omit = omit,
|
|
572
577
|
metadata: Dict[str, str] | Omit = omit,
|
|
573
578
|
on_demand: Optional[OnDemandSubscriptionParam] | Omit = omit,
|
|
574
579
|
payment_link: Optional[bool] | Omit = omit,
|
|
@@ -607,6 +612,8 @@ class AsyncSubscriptionsResource(AsyncAPIResource):
|
|
|
607
612
|
|
|
608
613
|
discount_code: Discount Code to apply to the subscription
|
|
609
614
|
|
|
615
|
+
force_3ds: Override merchant default 3DS behaviour for this subscription
|
|
616
|
+
|
|
610
617
|
metadata: Additional metadata for the subscription Defaults to empty if not specified
|
|
611
618
|
|
|
612
619
|
payment_link: If true, generates a payment link. Defaults to false if not specified.
|
|
@@ -641,6 +648,7 @@ class AsyncSubscriptionsResource(AsyncAPIResource):
|
|
|
641
648
|
"allowed_payment_method_types": allowed_payment_method_types,
|
|
642
649
|
"billing_currency": billing_currency,
|
|
643
650
|
"discount_code": discount_code,
|
|
651
|
+
"force_3ds": force_3ds,
|
|
644
652
|
"metadata": metadata,
|
|
645
653
|
"on_demand": on_demand,
|
|
646
654
|
"payment_link": payment_link,
|
|
@@ -57,6 +57,9 @@ class CheckoutSessionCreateParams(TypedDict, total=False):
|
|
|
57
57
|
|
|
58
58
|
feature_flags: FeatureFlags
|
|
59
59
|
|
|
60
|
+
force_3ds: Optional[bool]
|
|
61
|
+
"""Override merchant default 3DS behaviour for this session"""
|
|
62
|
+
|
|
60
63
|
metadata: Optional[Dict[str, str]]
|
|
61
64
|
"""Additional metadata associated with the payment.
|
|
62
65
|
|
|
@@ -111,6 +114,9 @@ class BillingAddress(TypedDict, total=False):
|
|
|
111
114
|
|
|
112
115
|
|
|
113
116
|
class Customization(TypedDict, total=False):
|
|
117
|
+
force_language: Optional[str]
|
|
118
|
+
"""Force the checkout interface to render in a specific language (e.g. `en`, `es`)"""
|
|
119
|
+
|
|
114
120
|
show_on_demand_tag: bool
|
|
115
121
|
"""Show on demand tag
|
|
116
122
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
3
5
|
from .._models import BaseModel
|
|
4
6
|
|
|
5
7
|
__all__ = ["CustomerLimitedDetails"]
|
|
@@ -14,3 +16,6 @@ class CustomerLimitedDetails(BaseModel):
|
|
|
14
16
|
|
|
15
17
|
name: str
|
|
16
18
|
"""Full name of the customer"""
|
|
19
|
+
|
|
20
|
+
phone_number: Optional[str] = None
|
|
21
|
+
"""Phone number of the customer"""
|
|
@@ -10,7 +10,13 @@ __all__ = ["NewCustomerParam"]
|
|
|
10
10
|
|
|
11
11
|
class NewCustomerParam(TypedDict, total=False):
|
|
12
12
|
email: Required[str]
|
|
13
|
+
"""Email is required for creating a new customer"""
|
|
13
14
|
|
|
14
|
-
name:
|
|
15
|
+
name: Optional[str]
|
|
16
|
+
"""Optional full name of the customer.
|
|
17
|
+
|
|
18
|
+
If provided during session creation, it is persisted and becomes immutable for
|
|
19
|
+
the session. If omitted here, it can be provided later via the confirm API.
|
|
20
|
+
"""
|
|
15
21
|
|
|
16
22
|
phone_number: Optional[str]
|
|
@@ -42,6 +42,9 @@ class PaymentCreateParams(TypedDict, total=False):
|
|
|
42
42
|
discount_code: Optional[str]
|
|
43
43
|
"""Discount Code to apply to the transaction"""
|
|
44
44
|
|
|
45
|
+
force_3ds: Optional[bool]
|
|
46
|
+
"""Override merchant default 3DS behaviour for this payment"""
|
|
47
|
+
|
|
45
48
|
metadata: Dict[str, str]
|
|
46
49
|
"""
|
|
47
50
|
Additional metadata associated with the payment. Defaults to empty if not
|
|
@@ -2,12 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from
|
|
5
|
+
from typing import Union
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from typing_extensions import Annotated, TypedDict
|
|
8
|
+
|
|
9
|
+
from .._utils import PropertyInfo
|
|
6
10
|
|
|
7
11
|
__all__ = ["PayoutListParams"]
|
|
8
12
|
|
|
9
13
|
|
|
10
14
|
class PayoutListParams(TypedDict, total=False):
|
|
15
|
+
created_at_gte: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
16
|
+
"""Get payouts created after this time (inclusive)"""
|
|
17
|
+
|
|
18
|
+
created_at_lte: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
|
|
19
|
+
"""Get payouts created before this time (inclusive)"""
|
|
20
|
+
|
|
11
21
|
page_number: int
|
|
12
22
|
"""Page number default is 0"""
|
|
13
23
|
|
|
@@ -49,6 +49,9 @@ class SubscriptionCreateParams(TypedDict, total=False):
|
|
|
49
49
|
discount_code: Optional[str]
|
|
50
50
|
"""Discount Code to apply to the subscription"""
|
|
51
51
|
|
|
52
|
+
force_3ds: Optional[bool]
|
|
53
|
+
"""Override merchant default 3DS behaviour for this subscription"""
|
|
54
|
+
|
|
52
55
|
metadata: Dict[str, str]
|
|
53
56
|
"""Additional metadata for the subscription Defaults to empty if not specified"""
|
|
54
57
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dodopayments
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.55.7
|
|
4
4
|
Summary: The official Python library for the Dodo Payments API
|
|
5
5
|
Project-URL: Homepage, https://github.com/dodopayments/dodopayments-python
|
|
6
6
|
Project-URL: Repository, https://github.com/dodopayments/dodopayments-python
|
|
@@ -11,7 +11,7 @@ dodopayments/_resource.py,sha256=Jfh17Q3kKzAhO-dlfIwYlueN9t1edaaY_vmnC9vErpA,113
|
|
|
11
11
|
dodopayments/_response.py,sha256=PDvrSN3E3IkXVw2GvyOCTNB8ch0Xn9yaWQz4w1nHZEQ,28854
|
|
12
12
|
dodopayments/_streaming.py,sha256=U4D6MhotaUaGaHz32lBt0XM98IOPIpPbKHUfbb0HGCk,10124
|
|
13
13
|
dodopayments/_types.py,sha256=CuN9iBczmyAIb_jqVBZ5gauyxAv6ya6d7w0Xj39EJcs,7242
|
|
14
|
-
dodopayments/_version.py,sha256=
|
|
14
|
+
dodopayments/_version.py,sha256=xPLkPH2_IIw9sSqmSlwSsK6tWge8j1HEkepRB3z4Vdo,165
|
|
15
15
|
dodopayments/pagination.py,sha256=gaS62u_b_92OYnUHmstLAFL5AF2_cr3Z6VpzSHd0mMw,2796
|
|
16
16
|
dodopayments/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
dodopayments/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -30,7 +30,7 @@ dodopayments/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
|
30
30
|
dodopayments/resources/__init__.py,sha256=uuPxPjUx7lOhJf5IXShPaBZmOrk3KGk1dqIHFWZ3QZ4,9411
|
|
31
31
|
dodopayments/resources/addons.py,sha256=0Bderk3-jPjorDIuvqI84ytKaj4z3e7ry33w05Va1z8,21752
|
|
32
32
|
dodopayments/resources/brands.py,sha256=kgLjiIy_rOy_zPs6rQyFEEJ9vdlCdTZfDISJXO05Emk,18636
|
|
33
|
-
dodopayments/resources/checkout_sessions.py,sha256=
|
|
33
|
+
dodopayments/resources/checkout_sessions.py,sha256=lrueXXgM9MOSemrjf1AHUIXbrF_4yZfWUirio4PWPCY,12491
|
|
34
34
|
dodopayments/resources/discounts.py,sha256=h-zdT_5Xetgen14atfb-nTOEGTe_Q6tJOBI9cPlqGVQ,26464
|
|
35
35
|
dodopayments/resources/disputes.py,sha256=jqQ9r4_UN9jPYzPBpEyGOv-tM9-lBOi7S4uCG4ZvY5M,12149
|
|
36
36
|
dodopayments/resources/license_key_instances.py,sha256=v4zzBPp0fI3jhXaEY3bE0bK3MNCidZ62HCBgU_9CG7k,14040
|
|
@@ -38,10 +38,10 @@ dodopayments/resources/license_keys.py,sha256=wNxUa2rXDLjKoLrlHp7_rKqQfpDNAmrQVM
|
|
|
38
38
|
dodopayments/resources/licenses.py,sha256=ZlblFtmZTFKlncx7vqBLRmvadTBwpi10LAUEnP9ZKtM,13174
|
|
39
39
|
dodopayments/resources/meters.py,sha256=rw-XSHRXdMScANLNKFCLXTh4EBP-5fX4acYsAlc7EYI,20207
|
|
40
40
|
dodopayments/resources/misc.py,sha256=PIp_ZkbbtaOEA5Q_Wda4Cngv7HG4p6Kkdg7MDD2dw6c,5081
|
|
41
|
-
dodopayments/resources/payments.py,sha256=
|
|
42
|
-
dodopayments/resources/payouts.py,sha256=
|
|
41
|
+
dodopayments/resources/payments.py,sha256=9IZKqgdN0lpRJ4iBT0GUcrBLGpfnHIsXz9jRMVRQUv0,24601
|
|
42
|
+
dodopayments/resources/payouts.py,sha256=gn8Vx0ALnJW14tRWV__FFoWLkU3lWKDd4of5SIUNVE4,7732
|
|
43
43
|
dodopayments/resources/refunds.py,sha256=vssQ990GZaBZb6-jSxjXEWcdj03nf2mNdNVxkd6xhsU,15057
|
|
44
|
-
dodopayments/resources/subscriptions.py,sha256=
|
|
44
|
+
dodopayments/resources/subscriptions.py,sha256=wsYRP6-5Gon43sbd5UAzW6G5oau1ESHFmaJFhQ9ZQdk,49136
|
|
45
45
|
dodopayments/resources/usage_events.py,sha256=yPLaWJL6_7PmK1K9as_TxVFzwj44ZRS3Wd6kaldSGoU,22197
|
|
46
46
|
dodopayments/resources/customers/__init__.py,sha256=LCE-I9hVmlMoL9NbPUp1fbmv-mvpkbJtkJJY9TW4t28,1609
|
|
47
47
|
dodopayments/resources/customers/customer_portal.py,sha256=We7D6Vh79CVz10bEuJUyvzv5WoVAcrQcQmdWUti-5Yk,6955
|
|
@@ -76,13 +76,13 @@ dodopayments/types/brand_create_params.py,sha256=13_JT-ln66wgbGLhFrWyzaM9-FG3-fP
|
|
|
76
76
|
dodopayments/types/brand_list_response.py,sha256=UTjYrMm32TaMtVR61jWJMCi2-JKY0FHJjhctYOtzDNk,306
|
|
77
77
|
dodopayments/types/brand_update_images_response.py,sha256=QEt_87f6YTRqgN1Wu0NL_zJ96jl6SeUSiBLh8Hpc0pw,350
|
|
78
78
|
dodopayments/types/brand_update_params.py,sha256=S7qu2_IYkxxBbNuz5G12sujyW9gyte8cxw3jVsm1V4Y,468
|
|
79
|
-
dodopayments/types/checkout_session_create_params.py,sha256=
|
|
79
|
+
dodopayments/types/checkout_session_create_params.py,sha256=mVMqrNLrsBclvLA-9zNVhoaL-yKkMmcWom0buDq_WxU,4981
|
|
80
80
|
dodopayments/types/checkout_session_response.py,sha256=t8xfip5y2ghrOib7ttHnGZYhiby8-vx6diuTnULx98A,317
|
|
81
81
|
dodopayments/types/country_code.py,sha256=aKc-CApHuQUg8xWGKxS2pnYvwUOz7G59qv4H7NOOHEo,2690
|
|
82
82
|
dodopayments/types/currency.py,sha256=Cv-x2wYCXupjzRgWHgtepd3ANbB6DrygxJVVxLpjEJY,1789
|
|
83
83
|
dodopayments/types/customer.py,sha256=gyxIAWVJyoUPvqKFMSZb2SE-gbgVw9Cf8FGVevPFKQs,371
|
|
84
84
|
dodopayments/types/customer_create_params.py,sha256=jILY28OtoNMyd3OEJcWmRCNUDc8LN3jMvWxPtFwWx2c,374
|
|
85
|
-
dodopayments/types/customer_limited_details.py,sha256=
|
|
85
|
+
dodopayments/types/customer_limited_details.py,sha256=fnAoV1fsJEahWdHZS5gGbnrdM3PhOLGZTHqpF65GsMI,481
|
|
86
86
|
dodopayments/types/customer_list_params.py,sha256=hK4vh0wscovGF6w1Z595aYOmHrxGQTr1AshwsEwfs4o,421
|
|
87
87
|
dodopayments/types/customer_portal_session.py,sha256=XwfDZMfoaiuVoJ4OmulTfLrfGurjgaCDiBKbUxA6Q08,212
|
|
88
88
|
dodopayments/types/customer_request_param.py,sha256=dfhcbTX8Ujb0pVlYWJm0fbI8-tR1fKxyDogG9xl0WVs,434
|
|
@@ -123,18 +123,18 @@ dodopayments/types/meter_filter.py,sha256=vTorhjlskNzqfZ-mJ5wU-zpHvdQ6P5Ovqj9vtg
|
|
|
123
123
|
dodopayments/types/meter_filter_param.py,sha256=mjSkU7ASQbIrEjko6Zu9lExEsLX3hKpeUIdnG-KW95I,4412
|
|
124
124
|
dodopayments/types/meter_list_params.py,sha256=_CUUn6rWB-O8F_y7wawEiUaCFO7EgHhgWPctzPF3uY0,415
|
|
125
125
|
dodopayments/types/misc_list_supported_countries_response.py,sha256=Imr7f0CAjq04iikVbDSUvG1ZSYzB9Fopx8pVfVtt-zw,307
|
|
126
|
-
dodopayments/types/new_customer_param.py,sha256=
|
|
126
|
+
dodopayments/types/new_customer_param.py,sha256=R-4KM9kl5QrJFIOCdZLd7KpBgH0JyVLRb5CROSFHsjw,637
|
|
127
127
|
dodopayments/types/on_demand_subscription_param.py,sha256=of3bmiTDMGljy6No4k-MMSHW71t3n-CadOf3Ye-trFQ,1407
|
|
128
128
|
dodopayments/types/one_time_product_cart_item.py,sha256=3l7J3KEE-SCXgArN25qKIXbIIu44Q2kxqd7jf73AGto,544
|
|
129
129
|
dodopayments/types/one_time_product_cart_item_param.py,sha256=JydRYPBnLhON1pCQPRpQzKLaGJTSrDn1IRVCcMK8iAE,633
|
|
130
130
|
dodopayments/types/payment.py,sha256=uzSTwdc_Dq9N_v1zuGzyAqh7MZTgCHBjPmN63-k0_CU,4772
|
|
131
|
-
dodopayments/types/payment_create_params.py,sha256=
|
|
131
|
+
dodopayments/types/payment_create_params.py,sha256=mE1OioAYCCaD3p_ZmPX8vSTh-I7l2L6pqoac6-7L46M,2361
|
|
132
132
|
dodopayments/types/payment_create_response.py,sha256=Kx70m87jA_WlNtdkzGN8ArzjmfrPZC0gneeov5gXtrM,1276
|
|
133
133
|
dodopayments/types/payment_list_params.py,sha256=CH6z3MqKkQsoWzuSnsxxEj60HBrAsUKwQ_9iLm4uZJc,1283
|
|
134
134
|
dodopayments/types/payment_list_response.py,sha256=I4X52FokitP_OzrR7qQSnIrswyIDOI8E1gu1h4vyDHA,784
|
|
135
135
|
dodopayments/types/payment_method_types.py,sha256=_Kp6SGsquALvZ7WRboxDsTdFhJxtgQtlpOmBtp-bMfM,505
|
|
136
136
|
dodopayments/types/payment_retrieve_line_items_response.py,sha256=Cxfq-BNHw0AyoLzZ6-5JAcQLkHsKWHg0e0a3yBfzRXU,513
|
|
137
|
-
dodopayments/types/payout_list_params.py,sha256=
|
|
137
|
+
dodopayments/types/payout_list_params.py,sha256=UxYHju95ukKUPfrQumdSjDG87gY73F6YXabykDg2rqw,754
|
|
138
138
|
dodopayments/types/payout_list_response.py,sha256=6SDDeP3J2OemGMujl-nsrvpt50evfP2FwX5nM32nAIg,1661
|
|
139
139
|
dodopayments/types/price.py,sha256=qUSoF8QCMEUXI5WJ68fty-hoXGRu0RdPYayOYSyYWkA,4744
|
|
140
140
|
dodopayments/types/price_param.py,sha256=M2U14HfclkKa4cOkw3AKAZkq2Ct3cWenoSWhAQaGwxs,5003
|
|
@@ -150,14 +150,14 @@ dodopayments/types/refund_create_params.py,sha256=hua-rUlW_5ZfKaPsh8O06yPgsj0gH7
|
|
|
150
150
|
dodopayments/types/refund_list_params.py,sha256=iz4MPgquP4K3AlYPV5_bbt5jHzGFT__RTpGjT4QXnPs,883
|
|
151
151
|
dodopayments/types/refund_list_response.py,sha256=ac-PiXylKt2woZXop2hOBNx-UOV1JBq879EBICs-oJs,1088
|
|
152
152
|
dodopayments/types/refund_status.py,sha256=ftnBnLvslfMYcUg8t7nEvb6-m5NWyVVnNcgyVu9eZto,243
|
|
153
|
-
dodopayments/types/subscription.py,sha256=
|
|
153
|
+
dodopayments/types/subscription.py,sha256=Ft0fxY9OFqfSSI9CCALVx6qvGnpj_8sc3ZswD1RKOk8,3397
|
|
154
154
|
dodopayments/types/subscription_change_plan_params.py,sha256=u04uGX3XYTPZSldZzc7fvhKeq_HFyQ3kkOkCugZo7TQ,866
|
|
155
155
|
dodopayments/types/subscription_charge_params.py,sha256=ZFj-vOPuOoS86D--fD6p3Ntxq7TBj3Eeq1PwMJeJ6wI,1748
|
|
156
156
|
dodopayments/types/subscription_charge_response.py,sha256=aDFuOKqqQ-_v1szx9oUT89QaeM3nvwrlAExzZhF0O-Q,228
|
|
157
|
-
dodopayments/types/subscription_create_params.py,sha256=
|
|
157
|
+
dodopayments/types/subscription_create_params.py,sha256=EUMnCYULwC-lrJCFJYdXu1eibg2mMJkT-Je9thNTh34,2751
|
|
158
158
|
dodopayments/types/subscription_create_response.py,sha256=Equ-ycrO3A3mOVElW6BjoBH8sqc5wwKS8ED9fHvTza0,1372
|
|
159
159
|
dodopayments/types/subscription_list_params.py,sha256=rh6yKzc_2T2R2P4ASk3L6wll-wC9bWa-wTLwFaz67WE,965
|
|
160
|
-
dodopayments/types/subscription_list_response.py,sha256=
|
|
160
|
+
dodopayments/types/subscription_list_response.py,sha256=CRpwfqOSPc2hLWuMcx1LBRdX7Ztr9eEls1Pza0p_4tc,2856
|
|
161
161
|
dodopayments/types/subscription_retrieve_usage_history_params.py,sha256=6zy-1464rEJEeYQDBOpYnsaO7UQMj6pK1-ritd3eAAk,863
|
|
162
162
|
dodopayments/types/subscription_retrieve_usage_history_response.py,sha256=m6ypsxNUMZ6QYPlgmXBI_AzGTLs2GLeM6Ib6GciTSqI,1155
|
|
163
163
|
dodopayments/types/subscription_status.py,sha256=3UxvrPY4QVcppbeIV86qe6p2YUQK8sPVcxbqUJn4V8Y,277
|
|
@@ -188,7 +188,7 @@ dodopayments/types/products/image_update_response.py,sha256=TcJyXjoJlONpwwR6yZdI
|
|
|
188
188
|
dodopayments/types/webhooks/__init__.py,sha256=F_ZpQalnBiuXt_C2pUepZjgJZwiAGKNwaEB03ZB6sUM,285
|
|
189
189
|
dodopayments/types/webhooks/header_retrieve_response.py,sha256=IKNaI2xO9qU7UXbffENYrRo2vUr0mqb8TIkAQdtLtXI,369
|
|
190
190
|
dodopayments/types/webhooks/header_update_params.py,sha256=USiXP4oFllTJgOBcBZQrcLlEzEOB6RHH9Ugdxatyy3g,376
|
|
191
|
-
dodopayments-1.
|
|
192
|
-
dodopayments-1.
|
|
193
|
-
dodopayments-1.
|
|
194
|
-
dodopayments-1.
|
|
191
|
+
dodopayments-1.55.7.dist-info/METADATA,sha256=WqdGndZl-KiBehXyva_c8F7GMHaJEizUtsWMCRwJRWc,17224
|
|
192
|
+
dodopayments-1.55.7.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
193
|
+
dodopayments-1.55.7.dist-info/licenses/LICENSE,sha256=3_sqrBb5J3AT3FsjMKEOBRZhweWVsl_s_RjFlclm1vQ,11343
|
|
194
|
+
dodopayments-1.55.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|