gr4vy 1.10.10__py3-none-any.whl → 1.10.11__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 +2 -2
- gr4vy/models/__init__.py +5 -0
- gr4vy/models/threedsecure.py +46 -0
- gr4vy/models/transactioncreate.py +8 -0
- gr4vy/models/transactionthreedsecuresummary.py +21 -2
- gr4vy/transactions.py +14 -0
- {gr4vy-1.10.10.dist-info → gr4vy-1.10.11.dist-info}/METADATA +1 -1
- {gr4vy-1.10.10.dist-info → gr4vy-1.10.11.dist-info}/RECORD +9 -8
- {gr4vy-1.10.10.dist-info → gr4vy-1.10.11.dist-info}/WHEEL +0 -0
gr4vy/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "gr4vy"
|
|
6
|
-
__version__: str = "1.10.
|
|
6
|
+
__version__: str = "1.10.11"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
8
|
__gen_version__: str = "2.794.1"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.10.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.10.11 2.794.1 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
gr4vy/models/__init__.py
CHANGED
|
@@ -1013,6 +1013,7 @@ if TYPE_CHECKING:
|
|
|
1013
1013
|
)
|
|
1014
1014
|
from .taxid import TaxID, TaxIDTypedDict
|
|
1015
1015
|
from .taxidkind import TaxIDKind
|
|
1016
|
+
from .threedsecure import ThreeDSecure, ThreeDSecureTypedDict
|
|
1016
1017
|
from .threedsecuredatav1 import ThreeDSecureDataV1, ThreeDSecureDataV1TypedDict
|
|
1017
1018
|
from .threedsecuredatav2 import ThreeDSecureDataV2, ThreeDSecureDataV2TypedDict
|
|
1018
1019
|
from .threedsecureerror import ThreeDSecureError, ThreeDSecureErrorTypedDict
|
|
@@ -1974,6 +1975,7 @@ __all__ = [
|
|
|
1974
1975
|
"TaxID",
|
|
1975
1976
|
"TaxIDKind",
|
|
1976
1977
|
"TaxIDTypedDict",
|
|
1978
|
+
"ThreeDSecure",
|
|
1977
1979
|
"ThreeDSecureData",
|
|
1978
1980
|
"ThreeDSecureDataTypedDict",
|
|
1979
1981
|
"ThreeDSecureDataV1",
|
|
@@ -1984,6 +1986,7 @@ __all__ = [
|
|
|
1984
1986
|
"ThreeDSecureErrorTypedDict",
|
|
1985
1987
|
"ThreeDSecureMethod",
|
|
1986
1988
|
"ThreeDSecureStatus",
|
|
1989
|
+
"ThreeDSecureTypedDict",
|
|
1987
1990
|
"ThreeDSecureV2",
|
|
1988
1991
|
"ThreeDSecureV2TypedDict",
|
|
1989
1992
|
"TicketDeliveryMethod",
|
|
@@ -2895,6 +2898,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2895
2898
|
"TaxID": ".taxid",
|
|
2896
2899
|
"TaxIDTypedDict": ".taxid",
|
|
2897
2900
|
"TaxIDKind": ".taxidkind",
|
|
2901
|
+
"ThreeDSecure": ".threedsecure",
|
|
2902
|
+
"ThreeDSecureTypedDict": ".threedsecure",
|
|
2898
2903
|
"ThreeDSecureDataV1": ".threedsecuredatav1",
|
|
2899
2904
|
"ThreeDSecureDataV1TypedDict": ".threedsecuredatav1",
|
|
2900
2905
|
"ThreeDSecureDataV2": ".threedsecuredatav2",
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from gr4vy.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from typing_extensions import NotRequired, TypedDict
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ThreeDSecureTypedDict(TypedDict):
|
|
10
|
+
amount: NotRequired[Nullable[int]]
|
|
11
|
+
r"""The amount to be used for 3DS authentication. Optionally set this value to authenticate a greater amount than the transaction amount."""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class ThreeDSecure(BaseModel):
|
|
15
|
+
amount: OptionalNullable[int] = UNSET
|
|
16
|
+
r"""The amount to be used for 3DS authentication. Optionally set this value to authenticate a greater amount than the transaction amount."""
|
|
17
|
+
|
|
18
|
+
@model_serializer(mode="wrap")
|
|
19
|
+
def serialize_model(self, handler):
|
|
20
|
+
optional_fields = ["amount"]
|
|
21
|
+
nullable_fields = ["amount"]
|
|
22
|
+
null_default_fields = []
|
|
23
|
+
|
|
24
|
+
serialized = handler(self)
|
|
25
|
+
|
|
26
|
+
m = {}
|
|
27
|
+
|
|
28
|
+
for n, f in type(self).model_fields.items():
|
|
29
|
+
k = f.alias or n
|
|
30
|
+
val = serialized.get(k)
|
|
31
|
+
serialized.pop(k, None)
|
|
32
|
+
|
|
33
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
34
|
+
is_set = (
|
|
35
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
36
|
+
or k in null_default_fields
|
|
37
|
+
) # pylint: disable=no-member
|
|
38
|
+
|
|
39
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
40
|
+
m[k] = val
|
|
41
|
+
elif val != UNSET_SENTINEL and (
|
|
42
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
43
|
+
):
|
|
44
|
+
m[k] = val
|
|
45
|
+
|
|
46
|
+
return m
|
|
@@ -56,6 +56,7 @@ from .redirectpaymentmethodcreate import (
|
|
|
56
56
|
RedirectPaymentMethodCreateTypedDict,
|
|
57
57
|
)
|
|
58
58
|
from .statementdescriptor import StatementDescriptor, StatementDescriptorTypedDict
|
|
59
|
+
from .threedsecure import ThreeDSecure, ThreeDSecureTypedDict
|
|
59
60
|
from .threedsecuredatav1 import ThreeDSecureDataV1, ThreeDSecureDataV1TypedDict
|
|
60
61
|
from .threedsecuredatav2 import ThreeDSecureDataV2, ThreeDSecureDataV2TypedDict
|
|
61
62
|
from .tokenpaymentmethodcreate import (
|
|
@@ -164,6 +165,8 @@ class TransactionCreateTypedDict(TypedDict):
|
|
|
164
165
|
"""
|
|
165
166
|
three_d_secure_data: NotRequired[Nullable[ThreeDSecureDataTypedDict]]
|
|
166
167
|
r"""Pass through 3-D Secure data to support external 3-D Secure authorisation. If using an external 3-D Secure provider, you should not pass a `redirect_url` in the `payment_method` object for a transaction."""
|
|
168
|
+
three_d_secure: NotRequired[Nullable[ThreeDSecureTypedDict]]
|
|
169
|
+
r"""Optional 3-D Secure values to use during the authentication flow."""
|
|
167
170
|
metadata: NotRequired[Nullable[Dict[str, str]]]
|
|
168
171
|
r"""Any additional information about the transaction that you would like to store as key-value pairs. This data is passed to payment service providers that support it."""
|
|
169
172
|
is_subsequent_payment: NotRequired[bool]
|
|
@@ -277,6 +280,9 @@ class TransactionCreate(BaseModel):
|
|
|
277
280
|
three_d_secure_data: OptionalNullable[ThreeDSecureData] = UNSET
|
|
278
281
|
r"""Pass through 3-D Secure data to support external 3-D Secure authorisation. If using an external 3-D Secure provider, you should not pass a `redirect_url` in the `payment_method` object for a transaction."""
|
|
279
282
|
|
|
283
|
+
three_d_secure: OptionalNullable[ThreeDSecure] = UNSET
|
|
284
|
+
r"""Optional 3-D Secure values to use during the authentication flow."""
|
|
285
|
+
|
|
280
286
|
metadata: OptionalNullable[Dict[str, str]] = UNSET
|
|
281
287
|
r"""Any additional information about the transaction that you would like to store as key-value pairs. This data is passed to payment service providers that support it."""
|
|
282
288
|
|
|
@@ -388,6 +394,7 @@ class TransactionCreate(BaseModel):
|
|
|
388
394
|
"intent",
|
|
389
395
|
"store",
|
|
390
396
|
"three_d_secure_data",
|
|
397
|
+
"three_d_secure",
|
|
391
398
|
"metadata",
|
|
392
399
|
"is_subsequent_payment",
|
|
393
400
|
"merchant_initiated",
|
|
@@ -425,6 +432,7 @@ class TransactionCreate(BaseModel):
|
|
|
425
432
|
"gift_cards",
|
|
426
433
|
"external_identifier",
|
|
427
434
|
"three_d_secure_data",
|
|
435
|
+
"three_d_secure",
|
|
428
436
|
"metadata",
|
|
429
437
|
"airline",
|
|
430
438
|
"cart_items",
|
|
@@ -33,6 +33,8 @@ class TransactionThreeDSecureSummaryTypedDict(TypedDict):
|
|
|
33
33
|
r"""The 3DS data sent to the payment service for this transaction. This will only be populated if external 3DS data was passed in directly as part of the transaction API call, or if our 3DS server returned a status code of `Y` or `A`. In case of a failure to authenticate (status `N`, `R`, or `U`) this field will not be populated. To see full details about the 3DS calls please use our transaction events API."""
|
|
34
34
|
error_data: NotRequired[Nullable[ThreeDSecureErrorTypedDict]]
|
|
35
35
|
r"""The error data received from our 3DS server. This will not be populated if the customer failed the authentication with a status code of `N`, `R`, or `U`. To see full details about the 3DS calls in those situations please use our transaction events API."""
|
|
36
|
+
amount: NotRequired[Nullable[int]]
|
|
37
|
+
r"""The amount used for 3DS authentication."""
|
|
36
38
|
|
|
37
39
|
|
|
38
40
|
class TransactionThreeDSecureSummary(BaseModel):
|
|
@@ -51,10 +53,27 @@ class TransactionThreeDSecureSummary(BaseModel):
|
|
|
51
53
|
error_data: OptionalNullable[ThreeDSecureError] = UNSET
|
|
52
54
|
r"""The error data received from our 3DS server. This will not be populated if the customer failed the authentication with a status code of `N`, `R`, or `U`. To see full details about the 3DS calls in those situations please use our transaction events API."""
|
|
53
55
|
|
|
56
|
+
amount: OptionalNullable[int] = UNSET
|
|
57
|
+
r"""The amount used for 3DS authentication."""
|
|
58
|
+
|
|
54
59
|
@model_serializer(mode="wrap")
|
|
55
60
|
def serialize_model(self, handler):
|
|
56
|
-
optional_fields = [
|
|
57
|
-
|
|
61
|
+
optional_fields = [
|
|
62
|
+
"version",
|
|
63
|
+
"status",
|
|
64
|
+
"method",
|
|
65
|
+
"response_data",
|
|
66
|
+
"error_data",
|
|
67
|
+
"amount",
|
|
68
|
+
]
|
|
69
|
+
nullable_fields = [
|
|
70
|
+
"version",
|
|
71
|
+
"status",
|
|
72
|
+
"method",
|
|
73
|
+
"response_data",
|
|
74
|
+
"error_data",
|
|
75
|
+
"amount",
|
|
76
|
+
]
|
|
58
77
|
null_default_fields = []
|
|
59
78
|
|
|
60
79
|
serialized = handler(self)
|
gr4vy/transactions.py
CHANGED
|
@@ -748,6 +748,9 @@ class Transactions(BaseSDK):
|
|
|
748
748
|
three_d_secure_data: OptionalNullable[
|
|
749
749
|
Union[models.ThreeDSecureData, models.ThreeDSecureDataTypedDict]
|
|
750
750
|
] = UNSET,
|
|
751
|
+
three_d_secure: OptionalNullable[
|
|
752
|
+
Union[models.ThreeDSecure, models.ThreeDSecureTypedDict]
|
|
753
|
+
] = UNSET,
|
|
751
754
|
metadata: OptionalNullable[Dict[str, str]] = UNSET,
|
|
752
755
|
is_subsequent_payment: Optional[bool] = False,
|
|
753
756
|
merchant_initiated: Optional[bool] = False,
|
|
@@ -819,6 +822,7 @@ class Transactions(BaseSDK):
|
|
|
819
822
|
* The flag has to be set to `true` when the `payment_source` is set to `recurring` or `installment`, and `merchant_initiated` is set to `false`.
|
|
820
823
|
* The flag has to be set to `false` (or not set) when using a previously vaulted payment method.
|
|
821
824
|
:param three_d_secure_data: Pass through 3-D Secure data to support external 3-D Secure authorisation. If using an external 3-D Secure provider, you should not pass a `redirect_url` in the `payment_method` object for a transaction.
|
|
825
|
+
:param three_d_secure: Optional 3-D Secure values to use during the authentication flow.
|
|
822
826
|
:param metadata: Any additional information about the transaction that you would like to store as key-value pairs. This data is passed to payment service providers that support it.
|
|
823
827
|
:param is_subsequent_payment: Indicates whether the transaction represents a subsequent payment coming from a setup recurring payment. Please note there are some restrictions on how this flag may be used.
|
|
824
828
|
|
|
@@ -902,6 +906,9 @@ class Transactions(BaseSDK):
|
|
|
902
906
|
three_d_secure_data=utils.get_pydantic_model(
|
|
903
907
|
three_d_secure_data, OptionalNullable[models.ThreeDSecureData]
|
|
904
908
|
),
|
|
909
|
+
three_d_secure=utils.get_pydantic_model(
|
|
910
|
+
three_d_secure, OptionalNullable[models.ThreeDSecure]
|
|
911
|
+
),
|
|
905
912
|
metadata=metadata,
|
|
906
913
|
is_subsequent_payment=is_subsequent_payment,
|
|
907
914
|
merchant_initiated=merchant_initiated,
|
|
@@ -1089,6 +1096,9 @@ class Transactions(BaseSDK):
|
|
|
1089
1096
|
three_d_secure_data: OptionalNullable[
|
|
1090
1097
|
Union[models.ThreeDSecureData, models.ThreeDSecureDataTypedDict]
|
|
1091
1098
|
] = UNSET,
|
|
1099
|
+
three_d_secure: OptionalNullable[
|
|
1100
|
+
Union[models.ThreeDSecure, models.ThreeDSecureTypedDict]
|
|
1101
|
+
] = UNSET,
|
|
1092
1102
|
metadata: OptionalNullable[Dict[str, str]] = UNSET,
|
|
1093
1103
|
is_subsequent_payment: Optional[bool] = False,
|
|
1094
1104
|
merchant_initiated: Optional[bool] = False,
|
|
@@ -1160,6 +1170,7 @@ class Transactions(BaseSDK):
|
|
|
1160
1170
|
* The flag has to be set to `true` when the `payment_source` is set to `recurring` or `installment`, and `merchant_initiated` is set to `false`.
|
|
1161
1171
|
* The flag has to be set to `false` (or not set) when using a previously vaulted payment method.
|
|
1162
1172
|
:param three_d_secure_data: Pass through 3-D Secure data to support external 3-D Secure authorisation. If using an external 3-D Secure provider, you should not pass a `redirect_url` in the `payment_method` object for a transaction.
|
|
1173
|
+
:param three_d_secure: Optional 3-D Secure values to use during the authentication flow.
|
|
1163
1174
|
:param metadata: Any additional information about the transaction that you would like to store as key-value pairs. This data is passed to payment service providers that support it.
|
|
1164
1175
|
:param is_subsequent_payment: Indicates whether the transaction represents a subsequent payment coming from a setup recurring payment. Please note there are some restrictions on how this flag may be used.
|
|
1165
1176
|
|
|
@@ -1243,6 +1254,9 @@ class Transactions(BaseSDK):
|
|
|
1243
1254
|
three_d_secure_data=utils.get_pydantic_model(
|
|
1244
1255
|
three_d_secure_data, OptionalNullable[models.ThreeDSecureData]
|
|
1245
1256
|
),
|
|
1257
|
+
three_d_secure=utils.get_pydantic_model(
|
|
1258
|
+
three_d_secure, OptionalNullable[models.ThreeDSecure]
|
|
1259
|
+
),
|
|
1246
1260
|
metadata=metadata,
|
|
1247
1261
|
is_subsequent_payment=is_subsequent_payment,
|
|
1248
1262
|
merchant_initiated=merchant_initiated,
|
|
@@ -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=WxTkBm_g3-4zcSwQID11UzwFIE3OIHz4U2sP9V59cDg,456
|
|
6
6
|
gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
|
|
7
7
|
gr4vy/actions.py,sha256=M0SgxWTiduh6x8zvOzO7wghlPz58jSJDJ1EjlvgjNXc,14008
|
|
8
8
|
gr4vy/all.py,sha256=dSRtcZcQ7gc9MYmgUFdExz077A5UjbLns7Zg48BQPtg,15248
|
|
@@ -41,7 +41,7 @@ gr4vy/gift_cards_sdk.py,sha256=Jbd6p4M8u-_n2y727-uD-7FuQcnV1a2xy4eOacUznCY,57715
|
|
|
41
41
|
gr4vy/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
42
42
|
gr4vy/jobs.py,sha256=tJe0qDHFSNbZgUL9r3AkyVVmkxszX2Qw8N8SkhvRDgo,14641
|
|
43
43
|
gr4vy/merchant_accounts_sdk.py,sha256=wBpZs-xeBU5ro32k-tkDgPPYmpMsA_DgjBQfmEsFZrs,82551
|
|
44
|
-
gr4vy/models/__init__.py,sha256=
|
|
44
|
+
gr4vy/models/__init__.py,sha256=77lKoWSMj6KL3ke9cKswPrjkBbq-_2CxL3WPAqYUY9Q,136601
|
|
45
45
|
gr4vy/models/accountsreceivablesreportspec.py,sha256=X4YKJ5TII4KFi1I47BYt1Egxsfs84EaqXsb7g90IpLw,1012
|
|
46
46
|
gr4vy/models/accountupdaterinquirysummary.py,sha256=rOJn5uG7cNFUkd6BbsAve6ueUlAJzU5_d_zeDu6RBTg,1097
|
|
47
47
|
gr4vy/models/accountupdaterjob.py,sha256=JKuRwrc5yYSAQ9lD5Ta4MALtfXBF7tn_37lllQsH2B0,1972
|
|
@@ -348,6 +348,7 @@ gr4vy/models/suspend_payment_method_network_tokenop.py,sha256=ZyFjsAV5k7aZVhy-Wa
|
|
|
348
348
|
gr4vy/models/sync_transactionop.py,sha256=LI3pf2JYBCbxhQiOWFhbmAQB5ZTyGFKabALYWTQsEYc,1429
|
|
349
349
|
gr4vy/models/taxid.py,sha256=8tH8mCoQAn1Le-xIBerE1GPshkyk_Wk0azAGqfJoATI,421
|
|
350
350
|
gr4vy/models/taxidkind.py,sha256=1zOtDW4shmRbY8_DAaSzis6B5Zclrzr9afI5EQ9Ma14,1303
|
|
351
|
+
gr4vy/models/threedsecure.py,sha256=IwnRT7AkLOmAb3G2MgpIL3IMZ2OUOsThepL7_zCelKM,1638
|
|
351
352
|
gr4vy/models/threedsecuredatav1.py,sha256=QxJo7umbMh7HJwPslkAAzx1si-cytyMaP7rx2Qp-eTQ,2710
|
|
352
353
|
gr4vy/models/threedsecuredatav2.py,sha256=ggrINJLoQ819h6U3yJv7pQdfA_rFs6-aKXvCre8-KlU,2850
|
|
353
354
|
gr4vy/models/threedsecureerror.py,sha256=RleQeIq3efTJp7C_PdBBhX0olLhs2EEFEPFLCPev41o,2046
|
|
@@ -363,7 +364,7 @@ gr4vy/models/transactioncancel.py,sha256=alHd277Zp21-S1sMpBUELZWDjut1_gtAegbuAsq
|
|
|
363
364
|
gr4vy/models/transactioncapture.py,sha256=Cfku078JMM21yR93XYmkBzc6j_0isdUa0Cgn19tDmY4,3084
|
|
364
365
|
gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
|
|
365
366
|
gr4vy/models/transactionconnectionoptions.py,sha256=peSwyZ-6A9a389rUB8QM3R2VX21faHwD51BR2cKNOhU,20532
|
|
366
|
-
gr4vy/models/transactioncreate.py,sha256=
|
|
367
|
+
gr4vy/models/transactioncreate.py,sha256=RgJ0ISjhlvmdBvfxZnqdJPiXi1sKGAfetc4ouPbLHU4,27611
|
|
367
368
|
gr4vy/models/transactionevent.py,sha256=brjclnfrWdK5b7U_VAbzrVd753Lp9iqm8ztDy2xX71Q,3871
|
|
368
369
|
gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
|
|
369
370
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
@@ -379,7 +380,7 @@ gr4vy/models/transactionsreportspec.py,sha256=e1yggg1lXLVMavufoIlbzS9T3k9Hdv6iJj
|
|
|
379
380
|
gr4vy/models/transactionstatus.py,sha256=pYWF680-mTUHe6WfzEBhgxxBn_TK8qEln-4hPD-PeCw,537
|
|
380
381
|
gr4vy/models/transactionsummaries.py,sha256=WiOtmYDPjsKJL3dYiyIifsLtAI0wyAFwWNSsrIbyljg,2226
|
|
381
382
|
gr4vy/models/transactionsummary.py,sha256=SPgDjOsWy_8LRFaHQs6PN9Zx2HqjsIYnUYcDWylz_dw,11742
|
|
382
|
-
gr4vy/models/transactionthreedsecuresummary.py,sha256=
|
|
383
|
+
gr4vy/models/transactionthreedsecuresummary.py,sha256=AcfLFeoiQX7GhcUt-ZsaXgkVELuJnzhCH4afqqex2do,5505
|
|
383
384
|
gr4vy/models/transactionupdate.py,sha256=BnCR-1aNA40v0L0ayps0NtiSSclYh6Zhvi4Py1GWmY0,3514
|
|
384
385
|
gr4vy/models/transactionvoid.py,sha256=_0-CN56q9rE-vqRAHsGKbZtZrhdv0z2xCwzp0B1Q8ek,3048
|
|
385
386
|
gr4vy/models/travelhubcustomdata.py,sha256=qVMavG75E8LRhu-FlNNuu_I863VWYCUp29XH7NjOlqk,1690
|
|
@@ -422,7 +423,7 @@ gr4vy/reports_sdk.py,sha256=HI6IZI5tSeSUsSmUNS4ypNHapFN0wUQ86iLDCr9SAZ4,59929
|
|
|
422
423
|
gr4vy/sdk.py,sha256=2hfDkFfqPXyFR8w4J0joQrk_5xirotLtFrRYu5glAq4,10519
|
|
423
424
|
gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
|
|
424
425
|
gr4vy/sessions.py,sha256=AA32Wu6OmJbJ7GdypptwmK31SbZH4VLLuo3gnzD4nJE,41837
|
|
425
|
-
gr4vy/transactions.py,sha256=
|
|
426
|
+
gr4vy/transactions.py,sha256=BllzoYY8qTVSZ0T-WlEN6R-i5ocDFSUJlajVhhE4MB0,170925
|
|
426
427
|
gr4vy/transactions_refunds.py,sha256=mAzll7rTt7VV0n7wHlAfK5KY81JhWJ1333KjXXGOdFo,43819
|
|
427
428
|
gr4vy/transactions_settlements.py,sha256=oxVGRIMmcwKhZWN0KWW1Wm3831m5y55SU17LMRaKmEM,27902
|
|
428
429
|
gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
@@ -445,6 +446,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=G4h8gLOK09kjhPiUZjgIMm6zntcbxpvb_m
|
|
|
445
446
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
446
447
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
447
448
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
448
|
-
gr4vy-1.10.
|
|
449
|
-
gr4vy-1.10.
|
|
450
|
-
gr4vy-1.10.
|
|
449
|
+
gr4vy-1.10.11.dist-info/METADATA,sha256=lQsANWdMhNbk-LAeLWXOEfqCNjUI-k-55sY-NCu8sd4,44299
|
|
450
|
+
gr4vy-1.10.11.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
451
|
+
gr4vy-1.10.11.dist-info/RECORD,,
|
|
File without changes
|