gr4vy 1.7.16__py3-none-any.whl → 1.8.0__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.
- gr4vy/_version.py +3 -3
- gr4vy/buyers_sdk.py +8 -8
- gr4vy/checkout_sessions.py +4 -4
- gr4vy/models/__init__.py +92 -113
- gr4vy/models/auditlogentries.py +3 -3
- gr4vy/models/{auditlogentry_output.py → auditlogentry.py} +2 -2
- gr4vy/models/{billingdetails_input.py → billingdetails.py} +2 -2
- gr4vy/models/buyer.py +3 -3
- gr4vy/models/buyercreate.py +3 -3
- gr4vy/models/buyerupdate.py +3 -3
- gr4vy/models/capture_transactionop.py +23 -10
- gr4vy/models/checkoutsession.py +8 -8
- gr4vy/models/checkoutsessioncreate.py +3 -3
- gr4vy/models/{checkoutsessionpaymentmethod_output.py → checkoutsessionpaymentmethod.py} +2 -2
- gr4vy/models/cybersourceoptions.py +7 -0
- gr4vy/models/{guestbuyer_input.py → guestbuyer.py} +5 -5
- gr4vy/models/paymentlink.py +3 -6
- gr4vy/models/paymentlinkcreate.py +3 -3
- gr4vy/models/paymentmethodsummaries.py +3 -6
- gr4vy/models/{paymentmethodsummary_output.py → paymentmethodsummary.py} +2 -2
- gr4vy/models/{paymentoption_output.py → paymentoption.py} +2 -2
- gr4vy/models/paymentoptions.py +3 -3
- gr4vy/models/payoutcreate.py +3 -3
- gr4vy/models/payoutsummary.py +8 -11
- gr4vy/models/{transaction_output.py → transaction.py} +15 -18
- gr4vy/models/{transactionbuyer_output.py → transactionbuyer.py} +5 -5
- gr4vy/models/transactioncancel.py +3 -3
- gr4vy/models/{transactioncapture_output.py → transactioncapture.py} +5 -5
- gr4vy/models/transactioncreate.py +3 -3
- gr4vy/models/{transactionevent_output.py → transactionevent.py} +9 -5
- gr4vy/models/transactioneventcontext.py +32 -0
- gr4vy/models/transactionevents.py +3 -6
- gr4vy/models/{transactionpaymentmethod_output.py → transactionpaymentmethod.py} +2 -2
- gr4vy/models/transactionsummaries.py +3 -6
- gr4vy/models/{transactionsummary_output.py → transactionsummary.py} +10 -13
- gr4vy/models/{transactionthreedsecuresummary_output.py → transactionthreedsecuresummary.py} +2 -2
- gr4vy/models/{transactionvoid_output.py → transactionvoid.py} +5 -5
- gr4vy/models/void_transactionop.py +28 -11
- gr4vy/payment_links_sdk.py +4 -4
- gr4vy/payouts.py +4 -4
- gr4vy/transactions.py +20 -20
- gr4vy/utils/retries.py +69 -5
- {gr4vy-1.7.16.dist-info → gr4vy-1.8.0.dist-info}/METADATA +1 -1
- {gr4vy-1.7.16.dist-info → gr4vy-1.8.0.dist-info}/RECORD +45 -46
- gr4vy/models/billingdetails_output.py +0 -87
- gr4vy/models/guestbuyer_output.py +0 -80
- {gr4vy-1.7.16.dist-info → gr4vy-1.8.0.dist-info}/WHEEL +0 -0
gr4vy/transactions.py
CHANGED
|
@@ -730,7 +730,7 @@ class Transactions(BaseSDK):
|
|
|
730
730
|
]
|
|
731
731
|
] = UNSET,
|
|
732
732
|
buyer: OptionalNullable[
|
|
733
|
-
Union[models.
|
|
733
|
+
Union[models.GuestBuyer, models.GuestBuyerTypedDict]
|
|
734
734
|
] = UNSET,
|
|
735
735
|
buyer_id: OptionalNullable[str] = UNSET,
|
|
736
736
|
buyer_external_identifier: OptionalNullable[str] = UNSET,
|
|
@@ -789,7 +789,7 @@ class Transactions(BaseSDK):
|
|
|
789
789
|
server_url: Optional[str] = None,
|
|
790
790
|
timeout_ms: Optional[int] = None,
|
|
791
791
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
792
|
-
) -> models.
|
|
792
|
+
) -> models.Transaction:
|
|
793
793
|
r"""Create transaction
|
|
794
794
|
|
|
795
795
|
Create a new transaction using a supported payment method. If additional buyer authorization is required, an approval URL will be returned. Duplicated gift card numbers are not supported.
|
|
@@ -884,7 +884,7 @@ class Transactions(BaseSDK):
|
|
|
884
884
|
OptionalNullable[models.TransactionCreatePaymentMethod],
|
|
885
885
|
),
|
|
886
886
|
buyer=utils.get_pydantic_model(
|
|
887
|
-
buyer, OptionalNullable[models.
|
|
887
|
+
buyer, OptionalNullable[models.GuestBuyer]
|
|
888
888
|
),
|
|
889
889
|
buyer_id=buyer_id,
|
|
890
890
|
buyer_external_identifier=buyer_external_identifier,
|
|
@@ -1006,7 +1006,7 @@ class Transactions(BaseSDK):
|
|
|
1006
1006
|
|
|
1007
1007
|
response_data: Any = None
|
|
1008
1008
|
if utils.match_response(http_res, "201", "application/json"):
|
|
1009
|
-
return unmarshal_json_response(models.
|
|
1009
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
1010
1010
|
if utils.match_response(http_res, "400", "application/json"):
|
|
1011
1011
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
1012
1012
|
raise errors.Error400(response_data, http_res)
|
|
@@ -1070,7 +1070,7 @@ class Transactions(BaseSDK):
|
|
|
1070
1070
|
]
|
|
1071
1071
|
] = UNSET,
|
|
1072
1072
|
buyer: OptionalNullable[
|
|
1073
|
-
Union[models.
|
|
1073
|
+
Union[models.GuestBuyer, models.GuestBuyerTypedDict]
|
|
1074
1074
|
] = UNSET,
|
|
1075
1075
|
buyer_id: OptionalNullable[str] = UNSET,
|
|
1076
1076
|
buyer_external_identifier: OptionalNullable[str] = UNSET,
|
|
@@ -1129,7 +1129,7 @@ class Transactions(BaseSDK):
|
|
|
1129
1129
|
server_url: Optional[str] = None,
|
|
1130
1130
|
timeout_ms: Optional[int] = None,
|
|
1131
1131
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1132
|
-
) -> models.
|
|
1132
|
+
) -> models.Transaction:
|
|
1133
1133
|
r"""Create transaction
|
|
1134
1134
|
|
|
1135
1135
|
Create a new transaction using a supported payment method. If additional buyer authorization is required, an approval URL will be returned. Duplicated gift card numbers are not supported.
|
|
@@ -1224,7 +1224,7 @@ class Transactions(BaseSDK):
|
|
|
1224
1224
|
OptionalNullable[models.TransactionCreatePaymentMethod],
|
|
1225
1225
|
),
|
|
1226
1226
|
buyer=utils.get_pydantic_model(
|
|
1227
|
-
buyer, OptionalNullable[models.
|
|
1227
|
+
buyer, OptionalNullable[models.GuestBuyer]
|
|
1228
1228
|
),
|
|
1229
1229
|
buyer_id=buyer_id,
|
|
1230
1230
|
buyer_external_identifier=buyer_external_identifier,
|
|
@@ -1346,7 +1346,7 @@ class Transactions(BaseSDK):
|
|
|
1346
1346
|
|
|
1347
1347
|
response_data: Any = None
|
|
1348
1348
|
if utils.match_response(http_res, "201", "application/json"):
|
|
1349
|
-
return unmarshal_json_response(models.
|
|
1349
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
1350
1350
|
if utils.match_response(http_res, "400", "application/json"):
|
|
1351
1351
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
1352
1352
|
raise errors.Error400(response_data, http_res)
|
|
@@ -1403,7 +1403,7 @@ class Transactions(BaseSDK):
|
|
|
1403
1403
|
server_url: Optional[str] = None,
|
|
1404
1404
|
timeout_ms: Optional[int] = None,
|
|
1405
1405
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1406
|
-
) -> models.
|
|
1406
|
+
) -> models.Transaction:
|
|
1407
1407
|
r"""Get transaction
|
|
1408
1408
|
|
|
1409
1409
|
Retrieve the details of a transaction by its unique identifier.
|
|
@@ -1493,7 +1493,7 @@ class Transactions(BaseSDK):
|
|
|
1493
1493
|
|
|
1494
1494
|
response_data: Any = None
|
|
1495
1495
|
if utils.match_response(http_res, "200", "application/json"):
|
|
1496
|
-
return unmarshal_json_response(models.
|
|
1496
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
1497
1497
|
if utils.match_response(http_res, "400", "application/json"):
|
|
1498
1498
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
1499
1499
|
raise errors.Error400(response_data, http_res)
|
|
@@ -1550,7 +1550,7 @@ class Transactions(BaseSDK):
|
|
|
1550
1550
|
server_url: Optional[str] = None,
|
|
1551
1551
|
timeout_ms: Optional[int] = None,
|
|
1552
1552
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1553
|
-
) -> models.
|
|
1553
|
+
) -> models.Transaction:
|
|
1554
1554
|
r"""Get transaction
|
|
1555
1555
|
|
|
1556
1556
|
Retrieve the details of a transaction by its unique identifier.
|
|
@@ -1640,7 +1640,7 @@ class Transactions(BaseSDK):
|
|
|
1640
1640
|
|
|
1641
1641
|
response_data: Any = None
|
|
1642
1642
|
if utils.match_response(http_res, "200", "application/json"):
|
|
1643
|
-
return unmarshal_json_response(models.
|
|
1643
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
1644
1644
|
if utils.match_response(http_res, "400", "application/json"):
|
|
1645
1645
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
1646
1646
|
raise errors.Error400(response_data, http_res)
|
|
@@ -1705,7 +1705,7 @@ class Transactions(BaseSDK):
|
|
|
1705
1705
|
server_url: Optional[str] = None,
|
|
1706
1706
|
timeout_ms: Optional[int] = None,
|
|
1707
1707
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1708
|
-
) -> models.
|
|
1708
|
+
) -> models.Transaction:
|
|
1709
1709
|
r"""Manually update a transaction
|
|
1710
1710
|
|
|
1711
1711
|
Manually updates a transaction.
|
|
@@ -1809,7 +1809,7 @@ class Transactions(BaseSDK):
|
|
|
1809
1809
|
|
|
1810
1810
|
response_data: Any = None
|
|
1811
1811
|
if utils.match_response(http_res, "200", "application/json"):
|
|
1812
|
-
return unmarshal_json_response(models.
|
|
1812
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
1813
1813
|
if utils.match_response(http_res, "400", "application/json"):
|
|
1814
1814
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
1815
1815
|
raise errors.Error400(response_data, http_res)
|
|
@@ -1874,7 +1874,7 @@ class Transactions(BaseSDK):
|
|
|
1874
1874
|
server_url: Optional[str] = None,
|
|
1875
1875
|
timeout_ms: Optional[int] = None,
|
|
1876
1876
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
1877
|
-
) -> models.
|
|
1877
|
+
) -> models.Transaction:
|
|
1878
1878
|
r"""Manually update a transaction
|
|
1879
1879
|
|
|
1880
1880
|
Manually updates a transaction.
|
|
@@ -1978,7 +1978,7 @@ class Transactions(BaseSDK):
|
|
|
1978
1978
|
|
|
1979
1979
|
response_data: Any = None
|
|
1980
1980
|
if utils.match_response(http_res, "200", "application/json"):
|
|
1981
|
-
return unmarshal_json_response(models.
|
|
1981
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
1982
1982
|
if utils.match_response(http_res, "400", "application/json"):
|
|
1983
1983
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
1984
1984
|
raise errors.Error400(response_data, http_res)
|
|
@@ -2943,7 +2943,7 @@ class Transactions(BaseSDK):
|
|
|
2943
2943
|
server_url: Optional[str] = None,
|
|
2944
2944
|
timeout_ms: Optional[int] = None,
|
|
2945
2945
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
2946
|
-
) -> models.
|
|
2946
|
+
) -> models.Transaction:
|
|
2947
2947
|
r"""Sync transaction
|
|
2948
2948
|
|
|
2949
2949
|
Synchronizes the status of a transaction with the underlying payment service provider. This is useful for transactions in a pending state to check if they've been completed or failed. Only available for some payment service providers.
|
|
@@ -3029,7 +3029,7 @@ class Transactions(BaseSDK):
|
|
|
3029
3029
|
|
|
3030
3030
|
response_data: Any = None
|
|
3031
3031
|
if utils.match_response(http_res, "200", "application/json"):
|
|
3032
|
-
return unmarshal_json_response(models.
|
|
3032
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
3033
3033
|
if utils.match_response(http_res, "400", "application/json"):
|
|
3034
3034
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
3035
3035
|
raise errors.Error400(response_data, http_res)
|
|
@@ -3086,7 +3086,7 @@ class Transactions(BaseSDK):
|
|
|
3086
3086
|
server_url: Optional[str] = None,
|
|
3087
3087
|
timeout_ms: Optional[int] = None,
|
|
3088
3088
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
3089
|
-
) -> models.
|
|
3089
|
+
) -> models.Transaction:
|
|
3090
3090
|
r"""Sync transaction
|
|
3091
3091
|
|
|
3092
3092
|
Synchronizes the status of a transaction with the underlying payment service provider. This is useful for transactions in a pending state to check if they've been completed or failed. Only available for some payment service providers.
|
|
@@ -3172,7 +3172,7 @@ class Transactions(BaseSDK):
|
|
|
3172
3172
|
|
|
3173
3173
|
response_data: Any = None
|
|
3174
3174
|
if utils.match_response(http_res, "200", "application/json"):
|
|
3175
|
-
return unmarshal_json_response(models.
|
|
3175
|
+
return unmarshal_json_response(models.Transaction, http_res)
|
|
3176
3176
|
if utils.match_response(http_res, "400", "application/json"):
|
|
3177
3177
|
response_data = unmarshal_json_response(errors.Error400Data, http_res)
|
|
3178
3178
|
raise errors.Error400(response_data, http_res)
|
gr4vy/utils/retries.py
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
import asyncio
|
|
4
4
|
import random
|
|
5
5
|
import time
|
|
6
|
-
from
|
|
6
|
+
from datetime import datetime
|
|
7
|
+
from email.utils import parsedate_to_datetime
|
|
8
|
+
from typing import List, Optional
|
|
7
9
|
|
|
8
10
|
import httpx
|
|
9
11
|
|
|
@@ -51,9 +53,11 @@ class Retries:
|
|
|
51
53
|
|
|
52
54
|
class TemporaryError(Exception):
|
|
53
55
|
response: httpx.Response
|
|
56
|
+
retry_after: Optional[int]
|
|
54
57
|
|
|
55
58
|
def __init__(self, response: httpx.Response):
|
|
56
59
|
self.response = response
|
|
60
|
+
self.retry_after = _parse_retry_after_header(response)
|
|
57
61
|
|
|
58
62
|
|
|
59
63
|
class PermanentError(Exception):
|
|
@@ -63,6 +67,62 @@ class PermanentError(Exception):
|
|
|
63
67
|
self.inner = inner
|
|
64
68
|
|
|
65
69
|
|
|
70
|
+
def _parse_retry_after_header(response: httpx.Response) -> Optional[int]:
|
|
71
|
+
"""Parse Retry-After header from response.
|
|
72
|
+
|
|
73
|
+
Returns:
|
|
74
|
+
Retry interval in milliseconds, or None if header is missing or invalid.
|
|
75
|
+
"""
|
|
76
|
+
retry_after_header = response.headers.get("retry-after")
|
|
77
|
+
if not retry_after_header:
|
|
78
|
+
return None
|
|
79
|
+
|
|
80
|
+
try:
|
|
81
|
+
seconds = float(retry_after_header)
|
|
82
|
+
return round(seconds * 1000)
|
|
83
|
+
except ValueError:
|
|
84
|
+
pass
|
|
85
|
+
|
|
86
|
+
try:
|
|
87
|
+
retry_date = parsedate_to_datetime(retry_after_header)
|
|
88
|
+
delta = (retry_date - datetime.now(retry_date.tzinfo)).total_seconds()
|
|
89
|
+
return round(max(0, delta) * 1000)
|
|
90
|
+
except (ValueError, TypeError):
|
|
91
|
+
pass
|
|
92
|
+
|
|
93
|
+
return None
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
def _get_sleep_interval(
|
|
97
|
+
exception: Exception,
|
|
98
|
+
initial_interval: int,
|
|
99
|
+
max_interval: int,
|
|
100
|
+
exponent: float,
|
|
101
|
+
retries: int,
|
|
102
|
+
) -> float:
|
|
103
|
+
"""Get sleep interval for retry with exponential backoff.
|
|
104
|
+
|
|
105
|
+
Args:
|
|
106
|
+
exception: The exception that triggered the retry.
|
|
107
|
+
initial_interval: Initial retry interval in milliseconds.
|
|
108
|
+
max_interval: Maximum retry interval in milliseconds.
|
|
109
|
+
exponent: Base for exponential backoff calculation.
|
|
110
|
+
retries: Current retry attempt count.
|
|
111
|
+
|
|
112
|
+
Returns:
|
|
113
|
+
Sleep interval in seconds.
|
|
114
|
+
"""
|
|
115
|
+
if (
|
|
116
|
+
isinstance(exception, TemporaryError)
|
|
117
|
+
and exception.retry_after is not None
|
|
118
|
+
and exception.retry_after > 0
|
|
119
|
+
):
|
|
120
|
+
return exception.retry_after / 1000
|
|
121
|
+
|
|
122
|
+
sleep = (initial_interval / 1000) * exponent**retries + random.uniform(0, 1)
|
|
123
|
+
return min(sleep, max_interval / 1000)
|
|
124
|
+
|
|
125
|
+
|
|
66
126
|
def retry(func, retries: Retries):
|
|
67
127
|
if retries.config.strategy == "backoff":
|
|
68
128
|
|
|
@@ -183,8 +243,10 @@ def retry_with_backoff(
|
|
|
183
243
|
return exception.response
|
|
184
244
|
|
|
185
245
|
raise
|
|
186
|
-
|
|
187
|
-
sleep =
|
|
246
|
+
|
|
247
|
+
sleep = _get_sleep_interval(
|
|
248
|
+
exception, initial_interval, max_interval, exponent, retries
|
|
249
|
+
)
|
|
188
250
|
time.sleep(sleep)
|
|
189
251
|
retries += 1
|
|
190
252
|
|
|
@@ -211,7 +273,9 @@ async def retry_with_backoff_async(
|
|
|
211
273
|
return exception.response
|
|
212
274
|
|
|
213
275
|
raise
|
|
214
|
-
|
|
215
|
-
sleep =
|
|
276
|
+
|
|
277
|
+
sleep = _get_sleep_interval(
|
|
278
|
+
exception, initial_interval, max_interval, exponent, retries
|
|
279
|
+
)
|
|
216
280
|
await asyncio.sleep(sleep)
|
|
217
281
|
retries += 1
|
|
@@ -2,7 +2,7 @@ gr4vy/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
|
|
|
2
2
|
gr4vy/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
|
|
3
3
|
gr4vy/_hooks/sdkhooks.py,sha256=3jKTs2B1lcAxBMJge9C-qL0RGbKGLcrHvikzi67Tbdo,2493
|
|
4
4
|
gr4vy/_hooks/types.py,sha256=0O7dbbolkiFAnHkNULvwoLsiXJu0_Wmhev163bvZbW8,3039
|
|
5
|
-
gr4vy/_version.py,sha256=
|
|
5
|
+
gr4vy/_version.py,sha256=tuf6vZALTXJIi9rn94K5iSeCEyUogfsQrKNuI24gnH0,452
|
|
6
6
|
gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
|
|
7
7
|
gr4vy/all.py,sha256=jZtRqz8D1xGrylI95KA2XNwWLVAID1o_AYxA9wpXTzs,15176
|
|
8
8
|
gr4vy/audit_logs.py,sha256=U16uKNF7H514ZBM0cAeSz2U2JT4P-SPGIJU6d6KOH34,17087
|
|
@@ -11,10 +11,10 @@ gr4vy/balances.py,sha256=1uYS74VihJQsgP7Qj9ta-_iufOhHpuYfC_BD0L5lwmQ,14400
|
|
|
11
11
|
gr4vy/basesdk.py,sha256=blX6OgKfbCxGZ93GxJuXZaAOmfdIoi-yLHe8Zo5Wg1o,12173
|
|
12
12
|
gr4vy/buyers_gift_cards.py,sha256=pzktkPSaopEs80E6jbsjvkSli1AzEAuxHnjO1pVx8qA,14118
|
|
13
13
|
gr4vy/buyers_payment_methods.py,sha256=K6rwQM7c8TgjwYO97sHe4XmYrcWmHJ8FUWJMTs9ttTI,15595
|
|
14
|
-
gr4vy/buyers_sdk.py,sha256=
|
|
14
|
+
gr4vy/buyers_sdk.py,sha256=V5Jka7yrEGPaO1nQe3Wzkhe4afvBW_Uxrcub6kFkB8E,73554
|
|
15
15
|
gr4vy/buyers_shipping_details.py,sha256=8Sd5_cRQYm4fXpQHkOhma87rF-tuzGOpbDJKXQ-LZtE,73297
|
|
16
16
|
gr4vy/card_scheme_definitions_sdk.py,sha256=s3pLvYyofq-okz88ze9vZIHKgX06vy4uvBviLyuus4Q,13643
|
|
17
|
-
gr4vy/checkout_sessions.py,sha256=
|
|
17
|
+
gr4vy/checkout_sessions.py,sha256=9vuexqWyKWkCyDQhltORErMFrC1ouCxd312UwAWlFY4,58462
|
|
18
18
|
gr4vy/digital_wallets_sdk.py,sha256=Z91FxlJVqJ0-__eM7J0XSv_4kUmx-7KW8McKyfnIxEU,71131
|
|
19
19
|
gr4vy/domains.py,sha256=TxljWTn-RodSg5Ey0aXzOLa08v8gCGAMooSxx8nQiSw,28472
|
|
20
20
|
gr4vy/errors/__init__.py,sha256=ZDz7v86-UM-FLysIfPwSWRu-TH_1Xfu8xo8SCpVeFY8,3697
|
|
@@ -40,7 +40,7 @@ gr4vy/gift_cards_sdk.py,sha256=bVotXOI7TX5r32YIivU2_6eANtXdekxYbqeYK8MdzGA,57427
|
|
|
40
40
|
gr4vy/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
41
41
|
gr4vy/jobs.py,sha256=-UcByXMOnDc5cEiaBaXB_0S5eT2WdRWYcytE2p2j8WE,14569
|
|
42
42
|
gr4vy/merchant_accounts_sdk.py,sha256=tGPWxXP7IOKeZ1Gh8LJ4yTpkSnsL-C56aXKfTCf4z9E,82263
|
|
43
|
-
gr4vy/models/__init__.py,sha256=
|
|
43
|
+
gr4vy/models/__init__.py,sha256=bGeD7OPvg28nJEg03-MLH_V3H4vRpgj1vCfAHTwmJIo,134887
|
|
44
44
|
gr4vy/models/accountsreceivablesreportspec.py,sha256=X4YKJ5TII4KFi1I47BYt1Egxsfs84EaqXsb7g90IpLw,1012
|
|
45
45
|
gr4vy/models/accountupdaterinquirysummary.py,sha256=rOJn5uG7cNFUkd6BbsAve6ueUlAJzU5_d_zeDu6RBTg,1097
|
|
46
46
|
gr4vy/models/accountupdaterjob.py,sha256=JKuRwrc5yYSAQ9lD5Ta4MALtfXBF7tn_37lllQsH2B0,1972
|
|
@@ -67,23 +67,22 @@ gr4vy/models/applepaypaymentmethodcreate.py,sha256=M5kz8yeBjIS6_bJaoqmU1Vps8Giz6
|
|
|
67
67
|
gr4vy/models/applepaysessionrequest.py,sha256=1cZiA-8CbZc1NaAuDp6j2WKO6GTcw3sscUTJfAdT5Lo,656
|
|
68
68
|
gr4vy/models/approvaltarget.py,sha256=krVN1UPJHlmOoVtR3w5OyW0lBaVQ-7Rwo-dVmMiweNQ,288
|
|
69
69
|
gr4vy/models/auditlogaction.py,sha256=gBZedeTFy0p3uk1ATyuA4CJ17GjDRpV5EildTydXNYc,366
|
|
70
|
-
gr4vy/models/auditlogentries.py,sha256=
|
|
71
|
-
gr4vy/models/
|
|
70
|
+
gr4vy/models/auditlogentries.py,sha256=zJpcTRayJdPPgW-qRnFxZmEATjxmfP9HFBYvmwL-CWk,2191
|
|
71
|
+
gr4vy/models/auditlogentry.py,sha256=MWuCcSDsNp68RSgEJnrtYc4k-_WQvCw6YHOtIv5KByk,2875
|
|
72
72
|
gr4vy/models/auditlogentryresource.py,sha256=D5ZZA3lK2mFWmNS_TOTr68tMRSnlhqbUQWIM_bt-PX0,599
|
|
73
73
|
gr4vy/models/auditlogentryuser.py,sha256=lpofD8s853q1-lGvFKLj5jSza_RdenvlRd6icgt2Oic,2430
|
|
74
74
|
gr4vy/models/avsresponsecode.py,sha256=8ozUlzHAkMoAmIW3lBHkBPkZs62foCEvWHLdFYQC6Bg,409
|
|
75
|
-
gr4vy/models/
|
|
76
|
-
gr4vy/models/billingdetails_output.py,sha256=x-hzFKeM5zkpVYFbwKTMtsmV_vftRhZBtTSxcRdLgxs,3006
|
|
75
|
+
gr4vy/models/billingdetails.py,sha256=6XpKjxbNFmagIVwG5IGfPh8EEg_pqAtntXNRYd0B8HQ,2994
|
|
77
76
|
gr4vy/models/braintreedynamicdatafieldsoptions.py,sha256=e2OQ68dGwvxZamlo5HaioP0v9Sryt_s53htiyVZOdRo,2979
|
|
78
77
|
gr4vy/models/braintreeoptions.py,sha256=A8igahmK4kHgOhZ0tUHjwaDFpqy0K0nnSb5fZcfXwBQ,2701
|
|
79
78
|
gr4vy/models/browserinfo.py,sha256=M32QRxLqysUhtZyU_6m8OnFmRnDHSRULrH-W91Z05lk,2683
|
|
80
|
-
gr4vy/models/buyer.py,sha256=
|
|
81
|
-
gr4vy/models/buyercreate.py,sha256=
|
|
79
|
+
gr4vy/models/buyer.py,sha256=M3R9YfY3vYU-c0AzySfQcQH2IAOLL2RWtQIsHj7gzGY,3538
|
|
80
|
+
gr4vy/models/buyercreate.py,sha256=h4w_NQt6pv8UUZ5q1pPHaCgUGW3xFW9GGnzKT4lj7J4,2529
|
|
82
81
|
gr4vy/models/buyers.py,sha256=QJLFFT-l3RUGww78h-BqYTt7Mr-fLUs9VDrK2wl3naU,2133
|
|
83
|
-
gr4vy/models/buyerupdate.py,sha256=
|
|
82
|
+
gr4vy/models/buyerupdate.py,sha256=NAi0G8MdMRnoJL3X6DXo-aMTEZT32S1xu-FYctNy-NU,2541
|
|
84
83
|
gr4vy/models/cancel_transactionop.py,sha256=RBsqNruvMIWAHkhPT_s4GPu3pWlf_NfKJWNXc9HrvxI,1511
|
|
85
84
|
gr4vy/models/cancelstatus.py,sha256=9yb-oK8IL6apWdp1wmZBAqP9TYrz8vXG4Bbc3rQrXGE,307
|
|
86
|
-
gr4vy/models/capture_transactionop.py,sha256=
|
|
85
|
+
gr4vy/models/capture_transactionop.py,sha256=GgyIdWOlQWnxvUxuOtjF459uHihR_WMMdEsiW6ttp-g,4547
|
|
87
86
|
gr4vy/models/capturestatus.py,sha256=hyWAsFmt13M-veZi2e44itOuA-1GT3XUw3ybzYANoH0,328
|
|
88
87
|
gr4vy/models/cardpaymentmethodcreate.py,sha256=WQPt3NYDIPV0lCDQ8rB4Tqzu9JNkh0_UrgwJZeCI6SQ,3498
|
|
89
88
|
gr4vy/models/cardscheme.py,sha256=-kRYwYRl4KUkTuUR23IJCOs3EHp35RHryp7769xruvg,698
|
|
@@ -93,9 +92,9 @@ gr4vy/models/cardtype.py,sha256=NKubknj2_Bps4G8-TEZC3sOjpeKRGX42R3eXmmyzR2I,299
|
|
|
93
92
|
gr4vy/models/cardwithurlpaymentmethodcreate.py,sha256=-wb5hnuwpgpG9PGDIapbHuqYZibKfTojiP1S0DuXL88,3934
|
|
94
93
|
gr4vy/models/cartitem.py,sha256=5zyz-nkvAuA3MoXjVfE_OZ0onbgZCxcCuC8TWEbTxqg,8010
|
|
95
94
|
gr4vy/models/checkoutpayoutoptions.py,sha256=TVvoTLsY4NYo6MJyEDEPZIU7FWodTvo-H-LfGdDiUtY,638
|
|
96
|
-
gr4vy/models/checkoutsession.py,sha256=
|
|
97
|
-
gr4vy/models/checkoutsessioncreate.py,sha256=
|
|
98
|
-
gr4vy/models/
|
|
95
|
+
gr4vy/models/checkoutsession.py,sha256=rSODmOZ0537xPxRjLOMewzxjdeqKQBpn9F5QdoD-QdY,5371
|
|
96
|
+
gr4vy/models/checkoutsessioncreate.py,sha256=5bnHldhHGe29la_RFvItf7WTZyewmZN6Aepby9KkYOI,4297
|
|
97
|
+
gr4vy/models/checkoutsessionpaymentmethod.py,sha256=f1Gwael0Ka0SRVOG1-SLMysxAKuK1SpshuPOPIuyIuM,3489
|
|
99
98
|
gr4vy/models/checkoutsessionpaymentmethodcreate.py,sha256=0s5A8q7GtMIzXm_yFh_HCDL-WkQFLmi-1SHvV_D_Czw,3076
|
|
100
99
|
gr4vy/models/checkoutsessionpaymentmethoddetails.py,sha256=qs8nac4BrRov9q7lT1FmqfsoOy7XO3UiMjq5ZJlSOm4,2297
|
|
101
100
|
gr4vy/models/checkoutsessionwithurlpaymentmethodcreate.py,sha256=6rJ1E4_rt2jWk7nXr2VL3YuZj1I2jgjhe0L39SYL6EU,3576
|
|
@@ -128,7 +127,7 @@ gr4vy/models/cryptogram.py,sha256=dBVn-OSRioaHJMiIfxmBmoVlgWyLc3s30HV6icB0c3o,94
|
|
|
128
127
|
gr4vy/models/cryptogramcreate.py,sha256=pmsbZ39jzdrRAnWR0flBcITzPT9QcIJOYp9k0znxic8,451
|
|
129
128
|
gr4vy/models/cvvresponsecode.py,sha256=SQpPGT-7mO9xwsDiIjGAZ-zQjXvKmH_jfvg0q7RroIU,336
|
|
130
129
|
gr4vy/models/cybersourceantifraudoptions.py,sha256=bIW9BcHTBrRYHwLehdwbIu50x-1ZMfNVkz0D5qevf6A,2622
|
|
131
|
-
gr4vy/models/cybersourceoptions.py,sha256=
|
|
130
|
+
gr4vy/models/cybersourceoptions.py,sha256=gcbFy0IKmu3DB2RYlabsnYhyurCyaWl9P5GREYEdr3Y,2860
|
|
132
131
|
gr4vy/models/definitionfield.py,sha256=qi8JYRDSDgHLz3Hcug0M95ZAvm8SyPT-qldy-YD9MPI,1606
|
|
133
132
|
gr4vy/models/definitionfieldformat.py,sha256=iFx1ro4waAIZtqp_ouwfHVILF1erz_Hh7nzfpeIb4o0,352
|
|
134
133
|
gr4vy/models/delete_buyer_shipping_detailsop.py,sha256=hdFEhMJ-tZGm0y-dcXzFpjq84zoxa728DIgrrji0H6g,1847
|
|
@@ -208,8 +207,7 @@ gr4vy/models/googlepaypaymentmethodcreate.py,sha256=8imFx4qPRyKZ0toweKA9jAX-AsY8
|
|
|
208
207
|
gr4vy/models/googlepaypaymentoptioncontext.py,sha256=NlO-y-tf-gOq9qObOor6pb6vFd3pXSzKDyWpf764tQA,522
|
|
209
208
|
gr4vy/models/googlepaysession.py,sha256=J3X3bI5ZxiFEUAT6lmdlcyddRpu5kIdgwkPSofVviT4,588
|
|
210
209
|
gr4vy/models/googlepaysessionrequest.py,sha256=Z5kTOUSN707Xz9urjaqfhRwW1oRRbnlzv1Wcj6yXTw0,443
|
|
211
|
-
gr4vy/models/
|
|
212
|
-
gr4vy/models/guestbuyer_output.py,sha256=fDSHUtYbZsVoI0Od3Lzxzp6wA-4TrKwHHGGt8aMuTQo,2884
|
|
210
|
+
gr4vy/models/guestbuyer.py,sha256=FU8SZPc2ZYfEl9irHkzix-mrNN_iM2dtgSgUYVK0Rds,2841
|
|
213
211
|
gr4vy/models/instrumenttype.py,sha256=DDaZFmoRSwtiIZy2oEeI28OiIjgxu6qqXlMH-rVv3II,417
|
|
214
212
|
gr4vy/models/integrationclient.py,sha256=9qpWCQeXSlxMfoKLztNNS5saX0h9EjW36LMAlFXjPyQ,323
|
|
215
213
|
gr4vy/models/internal/__init__.py,sha256=xowceJVTVAP3WRyQ0NEGkm9PAoYU1l0_VYgXZP0ZvlM,1569
|
|
@@ -262,8 +260,8 @@ gr4vy/models/nuveiidealoptions.py,sha256=5AkzXKvFFVu9DDqIo5sGimXjOE-6alSDW1WeiPR
|
|
|
262
260
|
gr4vy/models/nuveioptions.py,sha256=ms46xui6MunqvGv_SK9S1Q7VQo1UI0hju2kqjUFNeRE,2063
|
|
263
261
|
gr4vy/models/nuveipseoptions.py,sha256=0CtBMe2cxU6XToQamYy25jCD0rMAl2Ko2KETtNyta1Q,2426
|
|
264
262
|
gr4vy/models/oxxooptions.py,sha256=UjdEwwdwr-N7b8_3gwE1rgxjmfadQRghk9vzZmS4uPU,1910
|
|
265
|
-
gr4vy/models/paymentlink.py,sha256=
|
|
266
|
-
gr4vy/models/paymentlinkcreate.py,sha256=
|
|
263
|
+
gr4vy/models/paymentlink.py,sha256=CH3JroLJo8G2i7C2Ei4E1xbToQ7I9v_SWyVcd7VrSRM,8380
|
|
264
|
+
gr4vy/models/paymentlinkcreate.py,sha256=qPVvXAooh2KR9ed08sIFHEJ1Vc93FG76muiVfhG4F9E,7128
|
|
267
265
|
gr4vy/models/paymentlinks.py,sha256=i7Sj7x18rY5HR-E_LkinvTpVjnl8aCMCldQJFXnV9Lk,2175
|
|
268
266
|
gr4vy/models/paymentlinkstatus.py,sha256=e09HkfXNZDZSN_lkHCyiW7IaI-8JtM-_UmSOQ_im7ZE,334
|
|
269
267
|
gr4vy/models/paymentmethod.py,sha256=0JMRPQjRTz78EYHL1cUmAGeKOjLLMyHEw9-d2Cj_kCo,9416
|
|
@@ -272,13 +270,13 @@ gr4vy/models/paymentmethoddetailscard.py,sha256=FH5LZkKpXm-GMJ6tLH4-WMEtW6syYOFi
|
|
|
272
270
|
gr4vy/models/paymentmethods.py,sha256=KYpooSk-VfLJYror_5N7Y8CECdK3VOBRS20sJQMZucc,2189
|
|
273
271
|
gr4vy/models/paymentmethodstatus.py,sha256=yLhYIXrB7m2i8_NNx6uX-mN2VQN_3eIEHVqKxclw0pU,370
|
|
274
272
|
gr4vy/models/paymentmethodstoredcard.py,sha256=-eJedn0lPGka3ChipisusyadKcF_vaUYtOJIVfnKJAo,829
|
|
275
|
-
gr4vy/models/paymentmethodsummaries.py,sha256=
|
|
276
|
-
gr4vy/models/
|
|
277
|
-
gr4vy/models/
|
|
273
|
+
gr4vy/models/paymentmethodsummaries.py,sha256=IFAC3w_TIQJbIyebLaotn91QzGyeuyWwAWKgBTzaZ9Q,580
|
|
274
|
+
gr4vy/models/paymentmethodsummary.py,sha256=pNYYUbuvjn-d4T5Quuf0o3lWVnrmctkxoKOEQXuX6AA,8104
|
|
275
|
+
gr4vy/models/paymentoption.py,sha256=s2ErG1kVt3PWh819Ufykb6x-CsC0SUmZVDi49ETlVys,3028
|
|
278
276
|
gr4vy/models/paymentoptioncontext.py,sha256=WuNiu2A5LB0RnbFyAPnpDn-mtmrKnW8CkTbWDQK2z2k,2365
|
|
279
277
|
gr4vy/models/paymentoptioncontextapprovalui.py,sha256=4Z7EOMtSOVkZdWq9lypc7DuXYRv49chHTCoCc-TN-dQ,1482
|
|
280
278
|
gr4vy/models/paymentoptionrequest.py,sha256=VwgQt4ZWnD8h4LXOlXRrgTTvKvg3QPfSTdnMqPVLFNQ,3581
|
|
281
|
-
gr4vy/models/paymentoptions.py,sha256=
|
|
279
|
+
gr4vy/models/paymentoptions.py,sha256=UBO33M1pUufA36vL2mck8riIKni1lKBFUkT_EgsjLpQ,529
|
|
282
280
|
gr4vy/models/paymentservice.py,sha256=zKIX8C4gPAR-cJglDxcezutICt2nKdK7mERaYhsvq84,8019
|
|
283
281
|
gr4vy/models/paymentserviceconfiguration.py,sha256=wD-SYLJsaKafJwlfLvEJgp3fh7tcTy6J1kZ40mtvxMI,1731
|
|
284
282
|
gr4vy/models/paymentservicecreate.py,sha256=OTOwuJmTD5wavfDcIdNQS-LY5xiJORDuk6eMYFJetU0,5930
|
|
@@ -292,13 +290,13 @@ gr4vy/models/paymentservicetokens.py,sha256=zRBGaNBKVr0NXZgQ7TZDEJDJbBbJ7sqkgMDq
|
|
|
292
290
|
gr4vy/models/paymentserviceupdate.py,sha256=B3GxHUOtiP13Fblgrb3GdPHQDaEG2EbZYlKwTZ39-xg,6271
|
|
293
291
|
gr4vy/models/payoutcategory.py,sha256=j5n2IQexJJCkWRnRoZfoZ9JNddYB84KelMmD2JpY4Fs,253
|
|
294
292
|
gr4vy/models/payoutconnectionoptions.py,sha256=vtSPfpo_GRIMoyf0WN1NaTa14cfJT4MFrEsvYaSDyT4,1749
|
|
295
|
-
gr4vy/models/payoutcreate.py,sha256=
|
|
293
|
+
gr4vy/models/payoutcreate.py,sha256=SxV3V7NdsIgGbhciXDbUGkd7VUoHVGNDIEHMlRu8m8g,5911
|
|
296
294
|
gr4vy/models/payoutmerchant.py,sha256=iY98n8DiVPY1a5hmzO9BOVFRKTq4cgMZg5N7RkxLhf4,2656
|
|
297
295
|
gr4vy/models/payoutmerchantsummary.py,sha256=BZFrzFYEQwZ5cAsUK_YbTvFZGgAc0oTcvzaXGiBf31w,3381
|
|
298
296
|
gr4vy/models/payoutpaymentservice.py,sha256=hdY8gf6uG9GHxBKve9OatNiRoKSCsoDClGlvJua0Zkg,2653
|
|
299
297
|
gr4vy/models/payoutstatus.py,sha256=noJUkRfZ4ShNUbU9Lo1c8x5UzPVy3bselJ3-fcN_yKM,327
|
|
300
298
|
gr4vy/models/payoutsummaries.py,sha256=n9rCKfAKn77Cyvy8WCfkKtCTI-wDxSJNraJBqT_RnV8,2191
|
|
301
|
-
gr4vy/models/payoutsummary.py,sha256=
|
|
299
|
+
gr4vy/models/payoutsummary.py,sha256=qnx3ShxDXmkKk8LXgGDtVatyxPqPjXneYarXGK_AiOQ,5435
|
|
302
300
|
gr4vy/models/paypaloptions.py,sha256=aY81ZsVtUgXnGmzSxWoHI3KhMs-_gCZpA6hjbS7sFB8,2038
|
|
303
301
|
gr4vy/models/paypalshippingoptions.py,sha256=85pRPBHzUzhNnoF8sFRjaQ2d64-hIXr-AMDj6z1FUZQ,1787
|
|
304
302
|
gr4vy/models/paypalshippingoptionsitem.py,sha256=Q09suxnZ3fIxUpOuyGpNljfPfFKoq82V0L0-Wyt7rSI,3424
|
|
@@ -352,19 +350,20 @@ gr4vy/models/threedsecuremethod.py,sha256=SZYNn4TSu2K_-VE458NaWtNpNZl1Y8WFJFQwMu
|
|
|
352
350
|
gr4vy/models/threedsecurestatus.py,sha256=ok7YxtoF76wJY9htTMKVmZqGWwDkVQPdFs3lEoIg9eI,356
|
|
353
351
|
gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
|
|
354
352
|
gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
|
|
355
|
-
gr4vy/models/
|
|
356
|
-
gr4vy/models/
|
|
357
|
-
gr4vy/models/transactioncancel.py,sha256=
|
|
358
|
-
gr4vy/models/
|
|
353
|
+
gr4vy/models/transaction.py,sha256=L4fCFD6ZBAMjmbUhWduxXMtgr5mQXjUf40P6YP7b-20,25295
|
|
354
|
+
gr4vy/models/transactionbuyer.py,sha256=eSEbXcZMur5RmSWHLlW6W_Gqg8mIv9Rfrjn6J00kCYM,3043
|
|
355
|
+
gr4vy/models/transactioncancel.py,sha256=OHP0xmmM374aaYXPeV0G2fZn5RRfxbTAzJnNospfCas,3162
|
|
356
|
+
gr4vy/models/transactioncapture.py,sha256=7WD3uoUyDJ1sejtjIb7b5B5BFtpKEi7KkegVtB0DLTg,3174
|
|
359
357
|
gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
|
|
360
358
|
gr4vy/models/transactionconnectionoptions.py,sha256=SjwcEvJc1wKBe3Bqu9CySf9AtkuO3QKJRh7-5JIXYe8,20051
|
|
361
|
-
gr4vy/models/transactioncreate.py,sha256=
|
|
362
|
-
gr4vy/models/
|
|
363
|
-
gr4vy/models/
|
|
359
|
+
gr4vy/models/transactioncreate.py,sha256=HWsWkpdYUVdbrUfbjagwrKVuvp4BrWcQofZQ8cxVI_Y,27526
|
|
360
|
+
gr4vy/models/transactionevent.py,sha256=UCcDka-dZP2Fk5J5OvRKv8Vj8MO-sHlupHNbPwUfwgI,4026
|
|
361
|
+
gr4vy/models/transactioneventcontext.py,sha256=y6snSpyOz1pyQ4jeY4S-ymuydRcALrIgGtnMqsrUr8U,891
|
|
362
|
+
gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
|
|
364
363
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
365
364
|
gr4vy/models/transactionintent.py,sha256=RS4C1XxvLSJqHF9iBtyvX5y6kCHOqlcUz7MTQuyMSM8,294
|
|
366
365
|
gr4vy/models/transactionintentoutcome.py,sha256=0-TNOB-W2uMH3keCtiMLwz2ettqYXu6swb10yRpVFiY,319
|
|
367
|
-
gr4vy/models/
|
|
366
|
+
gr4vy/models/transactionpaymentmethod.py,sha256=_uZqRH1cLCoyJPU6an26k27DFWMsNyGeG0HQlyybBx0,7424
|
|
368
367
|
gr4vy/models/transactionpaymentservice.py,sha256=kBS56vZtxCtiX37gxpTVlBzIkmUIa-ppJHPpiQRMM-s,1428
|
|
369
368
|
gr4vy/models/transactionpaymentsource.py,sha256=OdbWCrAuSIrIf8dwQ4WqlOl6J9Y6EQ3I5Rs-YxfrFxY,437
|
|
370
369
|
gr4vy/models/transactionrefundallcreate.py,sha256=EUachxUB50TDFFKeTzl9OmPatOCwISTKS0mFE83XgwI,1882
|
|
@@ -372,11 +371,11 @@ gr4vy/models/transactionrefundcreate.py,sha256=mmK7NsYYFbgPg-0FiJjsHlmGBl_KesQuS
|
|
|
372
371
|
gr4vy/models/transactionretriesreportspec.py,sha256=PUnfQb7ILdp1spWV_Fo9XgbTND7oH1RVx31nZO66_40,1004
|
|
373
372
|
gr4vy/models/transactionsreportspec.py,sha256=e1yggg1lXLVMavufoIlbzS9T3k9Hdv6iJj5qKzRlj4c,950
|
|
374
373
|
gr4vy/models/transactionstatus.py,sha256=pYWF680-mTUHe6WfzEBhgxxBn_TK8qEln-4hPD-PeCw,537
|
|
375
|
-
gr4vy/models/transactionsummaries.py,sha256=
|
|
376
|
-
gr4vy/models/
|
|
377
|
-
gr4vy/models/
|
|
374
|
+
gr4vy/models/transactionsummaries.py,sha256=WiOtmYDPjsKJL3dYiyIifsLtAI0wyAFwWNSsrIbyljg,2226
|
|
375
|
+
gr4vy/models/transactionsummary.py,sha256=mv9GfyZIgsygR4_IxFwYHNWaOirgeQGfwC9VdknjKow,12022
|
|
376
|
+
gr4vy/models/transactionthreedsecuresummary.py,sha256=rRFrtiW0auNHauNBNDlIkDd1WfoiTCAEFtg1W7BLoIg,5383
|
|
378
377
|
gr4vy/models/transactionupdate.py,sha256=BnCR-1aNA40v0L0ayps0NtiSSclYh6Zhvi4Py1GWmY0,3514
|
|
379
|
-
gr4vy/models/
|
|
378
|
+
gr4vy/models/transactionvoid.py,sha256=z0Rk_1Yrq9zT79UDbJt7OyG_fILUHCcY0p0C9b5Si70,3138
|
|
380
379
|
gr4vy/models/travelhubcustomdata.py,sha256=qVMavG75E8LRhu-FlNNuu_I863VWYCUp29XH7NjOlqk,1690
|
|
381
380
|
gr4vy/models/travelhuboptions.py,sha256=KAg0lkauHtpiwRueJWqzpp9T2Dh1EiVgU4cF8PAkqIg,2062
|
|
382
381
|
gr4vy/models/trustlyoptions.py,sha256=e0_PJTkNYqO5WE1d7qz9WaveM53xcuOXjqKmXCfSyKg,1927
|
|
@@ -393,7 +392,7 @@ gr4vy/models/userstatus.py,sha256=bmlF_Mt656z9o2ibhQ5_dohFs6nEKsuAoNdToCe4vE4,30
|
|
|
393
392
|
gr4vy/models/validationerror.py,sha256=4wRWnXDL-O7GxCdKzmEuWyv-xTywx124gpf65A1OyVc,522
|
|
394
393
|
gr4vy/models/verify_payment_service_credentialsop.py,sha256=IEO3QA3Nn6n-EcfuovKKr5Y-WFJfnU0lxRSvwJ-F7Yc,1623
|
|
395
394
|
gr4vy/models/verifycredentials.py,sha256=M4VoMBhJxmtTf9LXiL_7v3K6y5Gte-H3YGGpkIqB_n8,2278
|
|
396
|
-
gr4vy/models/void_transactionop.py,sha256=
|
|
395
|
+
gr4vy/models/void_transactionop.py,sha256=isrYPvxz3yc7STpodlH7DtqBtRStdM4lhNVS50d968w,4141
|
|
397
396
|
gr4vy/models/voidablefield.py,sha256=uApDDXV7oryN_PtHh1YH7dhBpFtPF4t5UqYzO4Hf1Sk,316
|
|
398
397
|
gr4vy/models/voidstatus.py,sha256=d1Xfuz1p1H3zCg11TWn-SPHxtULvy8HjmSKbGIHGW78,325
|
|
399
398
|
gr4vy/models/walletpaymentoptioncontext.py,sha256=aQfoRvTnYyNzpJfgpXvkoPbpUZGGEHg0ERjQq3udmCk,422
|
|
@@ -402,14 +401,14 @@ gr4vy/models/wpaypaytooptions.py,sha256=gyG3U5Ianv_xAzHKJNu7BY1jina9FBfU5Y7T64Au
|
|
|
402
401
|
gr4vy/models/wpaypaytoresourceoptions.py,sha256=Ub4XCfIiXKjGXkDERkXmyBWEaFBRxoiBN6olNPO_hRw,1658
|
|
403
402
|
gr4vy/models/wpaypaytosimulationoptions.py,sha256=_UHWxMSXhhEOjXwf4hOdelhtZNOFoqk7OoaqSjGofmY,1876
|
|
404
403
|
gr4vy/network_tokens_cryptogram.py,sha256=vZcxe7TtvwyIh03DyJlbHY_ik5TiJE6Z_8fQ-BEDBEQ,14954
|
|
405
|
-
gr4vy/payment_links_sdk.py,sha256=
|
|
404
|
+
gr4vy/payment_links_sdk.py,sha256=aXMKGsO0lwsJqUaXgFqnyk_z11a9sFzv9SUBU40r9oU,64515
|
|
406
405
|
gr4vy/payment_methods_network_tokens.py,sha256=R_rqxiAfjcYShTA1KUv3Tcg-Y0Paci2vJOkfVetC9Rs,70285
|
|
407
406
|
gr4vy/payment_methods_payment_service_tokens.py,sha256=axnIMRpbNsfiGvuVk9T-Wg-RtW3dXrAp11SwUIfnQjM,43221
|
|
408
407
|
gr4vy/payment_methods_sdk.py,sha256=2Gi5wqb1YDE4Hee9AInPx-_Ho_PpAQ0J81GMLe2FrNY,58116
|
|
409
408
|
gr4vy/payment_options_sdk.py,sha256=7TkqxbcU9AdO8GdNWzn3x074kqc7--Xt_mvkZ4oyJ9c,17083
|
|
410
409
|
gr4vy/payment_service_definitions_sdk.py,sha256=ICMUzbcNL0gVK0UYcFYkjymvFhUsaYzo4aiiryEj9Zs,41326
|
|
411
410
|
gr4vy/payment_services_sdk.py,sha256=-XqrJm1n5mHmfTR5VsV9BmXDT_FQH_ISPuZk6bIx6yI,113706
|
|
412
|
-
gr4vy/payouts.py,sha256=
|
|
411
|
+
gr4vy/payouts.py,sha256=hAWonhJRbOUAm86pCAPpSe0Irk882RjFudFC06I8wXU,47727
|
|
413
412
|
gr4vy/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
414
413
|
gr4vy/refunds_sdk.py,sha256=wJCwnOoKZa12ImNMO-9MCwDBNWtapGprK6ZRfjcjYjY,13555
|
|
415
414
|
gr4vy/report_executions_sdk.py,sha256=WvHKJi0pbgpQL15lQ9KNO9N-gOSp4a4-KN1mGmsVprs,18949
|
|
@@ -417,7 +416,7 @@ gr4vy/reports_sdk.py,sha256=S7SF4TvPf8DEBMjh9flsDBgfM76Nf-GQzQ3950_7aDI,59641
|
|
|
417
416
|
gr4vy/sdk.py,sha256=2hfDkFfqPXyFR8w4J0joQrk_5xirotLtFrRYu5glAq4,10519
|
|
418
417
|
gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
|
|
419
418
|
gr4vy/sessions.py,sha256=xuP2ijGiew7R9Ei4HxGSyysPl_dJ6O_TaKLuLPmnxZU,41621
|
|
420
|
-
gr4vy/transactions.py,sha256=
|
|
419
|
+
gr4vy/transactions.py,sha256=4c5E5Qld1qNhLWpt5g-9jAGEjVnovO5aT0tbSoXAhCQ,169457
|
|
421
420
|
gr4vy/transactions_refunds.py,sha256=lpOVupveezk8vzXI8CMUIUV2b889wYYvT4kF42KQU-M,43603
|
|
422
421
|
gr4vy/transactions_settlements.py,sha256=IHzgj9udsM2xA_-bsjGgnKy8Wo4FDqRoHbCipTZR8uw,27758
|
|
423
422
|
gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
@@ -433,13 +432,13 @@ gr4vy/utils/logger.py,sha256=WdT856mADqljmNjIW_Y1ntFJrIWz3CCOowhK8kcGobk,669
|
|
|
433
432
|
gr4vy/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
|
|
434
433
|
gr4vy/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
|
|
435
434
|
gr4vy/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
|
436
|
-
gr4vy/utils/retries.py,sha256=
|
|
435
|
+
gr4vy/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
|
|
437
436
|
gr4vy/utils/security.py,sha256=VfMDCDFcnxNgffthL8icp_bjRV9FxtJbhK2DgNkSZMk,6016
|
|
438
437
|
gr4vy/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
|
|
439
438
|
gr4vy/utils/unmarshal_json_response.py,sha256=G4h8gLOK09kjhPiUZjgIMm6zntcbxpvb_mCpMR3mLhQ,870
|
|
440
439
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
441
440
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
442
441
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
443
|
-
gr4vy-1.
|
|
444
|
-
gr4vy-1.
|
|
445
|
-
gr4vy-1.
|
|
442
|
+
gr4vy-1.8.0.dist-info/METADATA,sha256=k81zn7vYTnoi1A5ueVyT0q9FeOHVw0zx5MpHFuaHxdk,44092
|
|
443
|
+
gr4vy-1.8.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
444
|
+
gr4vy-1.8.0.dist-info/RECORD,,
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .address import Address, AddressTypedDict
|
|
5
|
-
from .taxid import TaxID, TaxIDTypedDict
|
|
6
|
-
from gr4vy.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
7
|
-
from pydantic import model_serializer
|
|
8
|
-
from typing_extensions import NotRequired, TypedDict
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class BillingDetailsOutputTypedDict(TypedDict):
|
|
12
|
-
first_name: NotRequired[Nullable[str]]
|
|
13
|
-
r"""The first name(s) or given name for the buyer."""
|
|
14
|
-
last_name: NotRequired[Nullable[str]]
|
|
15
|
-
r"""The last name, or family name, of the buyer."""
|
|
16
|
-
email_address: NotRequired[Nullable[str]]
|
|
17
|
-
r"""The email address for the buyer."""
|
|
18
|
-
phone_number: NotRequired[Nullable[str]]
|
|
19
|
-
r"""The phone number for the buyer which should be formatted according to the E164 number standard."""
|
|
20
|
-
address: NotRequired[Nullable[AddressTypedDict]]
|
|
21
|
-
r"""The billing address for the buyer."""
|
|
22
|
-
tax_id: NotRequired[Nullable[TaxIDTypedDict]]
|
|
23
|
-
r"""The tax ID information associated with the billing details."""
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
class BillingDetailsOutput(BaseModel):
|
|
27
|
-
first_name: OptionalNullable[str] = UNSET
|
|
28
|
-
r"""The first name(s) or given name for the buyer."""
|
|
29
|
-
|
|
30
|
-
last_name: OptionalNullable[str] = UNSET
|
|
31
|
-
r"""The last name, or family name, of the buyer."""
|
|
32
|
-
|
|
33
|
-
email_address: OptionalNullable[str] = UNSET
|
|
34
|
-
r"""The email address for the buyer."""
|
|
35
|
-
|
|
36
|
-
phone_number: OptionalNullable[str] = UNSET
|
|
37
|
-
r"""The phone number for the buyer which should be formatted according to the E164 number standard."""
|
|
38
|
-
|
|
39
|
-
address: OptionalNullable[Address] = UNSET
|
|
40
|
-
r"""The billing address for the buyer."""
|
|
41
|
-
|
|
42
|
-
tax_id: OptionalNullable[TaxID] = UNSET
|
|
43
|
-
r"""The tax ID information associated with the billing details."""
|
|
44
|
-
|
|
45
|
-
@model_serializer(mode="wrap")
|
|
46
|
-
def serialize_model(self, handler):
|
|
47
|
-
optional_fields = [
|
|
48
|
-
"first_name",
|
|
49
|
-
"last_name",
|
|
50
|
-
"email_address",
|
|
51
|
-
"phone_number",
|
|
52
|
-
"address",
|
|
53
|
-
"tax_id",
|
|
54
|
-
]
|
|
55
|
-
nullable_fields = [
|
|
56
|
-
"first_name",
|
|
57
|
-
"last_name",
|
|
58
|
-
"email_address",
|
|
59
|
-
"phone_number",
|
|
60
|
-
"address",
|
|
61
|
-
"tax_id",
|
|
62
|
-
]
|
|
63
|
-
null_default_fields = []
|
|
64
|
-
|
|
65
|
-
serialized = handler(self)
|
|
66
|
-
|
|
67
|
-
m = {}
|
|
68
|
-
|
|
69
|
-
for n, f in type(self).model_fields.items():
|
|
70
|
-
k = f.alias or n
|
|
71
|
-
val = serialized.get(k)
|
|
72
|
-
serialized.pop(k, None)
|
|
73
|
-
|
|
74
|
-
optional_nullable = k in optional_fields and k in nullable_fields
|
|
75
|
-
is_set = (
|
|
76
|
-
self.__pydantic_fields_set__.intersection({n})
|
|
77
|
-
or k in null_default_fields
|
|
78
|
-
) # pylint: disable=no-member
|
|
79
|
-
|
|
80
|
-
if val is not None and val != UNSET_SENTINEL:
|
|
81
|
-
m[k] = val
|
|
82
|
-
elif val != UNSET_SENTINEL and (
|
|
83
|
-
not k in optional_fields or (optional_nullable and is_set)
|
|
84
|
-
):
|
|
85
|
-
m[k] = val
|
|
86
|
-
|
|
87
|
-
return m
|