gr4vy 1.7.14__py3-none-any.whl → 1.7.16__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/models/__init__.py +5 -0
- gr4vy/models/nuveiidealoptions.py +49 -0
- gr4vy/models/transaction_output.py +7 -0
- gr4vy/models/transactionconnectionoptions.py +10 -0
- gr4vy/models/transactioncreate.py +7 -0
- gr4vy/transactions.py +6 -0
- gr4vy/utils/unmarshal_json_response.py +15 -1
- {gr4vy-1.7.14.dist-info → gr4vy-1.7.16.dist-info}/METADATA +1 -1
- {gr4vy-1.7.14.dist-info → gr4vy-1.7.16.dist-info}/RECORD +11 -10
- {gr4vy-1.7.14.dist-info → gr4vy-1.7.16.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.7.
|
|
6
|
+
__version__: str = "1.7.16"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.7.
|
|
8
|
+
__gen_version__: str = "2.760.2"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.7.16 2.760.2 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
gr4vy/models/__init__.py
CHANGED
|
@@ -797,6 +797,7 @@ if TYPE_CHECKING:
|
|
|
797
797
|
NuveiAirlineDataOptions,
|
|
798
798
|
NuveiAirlineDataOptionsTypedDict,
|
|
799
799
|
)
|
|
800
|
+
from .nuveiidealoptions import NuveiIDealOptions, NuveiIDealOptionsTypedDict
|
|
800
801
|
from .nuveioptions import NuveiOptions, NuveiOptionsTypedDict
|
|
801
802
|
from .nuveipseoptions import NuveiPSEOptions, NuveiPSEOptionsTypedDict
|
|
802
803
|
from .oxxooptions import OxxoOptions, OxxoOptionsTypedDict
|
|
@@ -1787,6 +1788,8 @@ __all__ = [
|
|
|
1787
1788
|
"NetworkTokensTypedDict",
|
|
1788
1789
|
"NuveiAirlineDataOptions",
|
|
1789
1790
|
"NuveiAirlineDataOptionsTypedDict",
|
|
1791
|
+
"NuveiIDealOptions",
|
|
1792
|
+
"NuveiIDealOptionsTypedDict",
|
|
1790
1793
|
"NuveiOptions",
|
|
1791
1794
|
"NuveiOptionsTypedDict",
|
|
1792
1795
|
"NuveiPSEOptions",
|
|
@@ -2703,6 +2706,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2703
2706
|
"NetworkTokenStatus": ".networktokenstatus",
|
|
2704
2707
|
"NuveiAirlineDataOptions": ".nuveiairlinedataoptions",
|
|
2705
2708
|
"NuveiAirlineDataOptionsTypedDict": ".nuveiairlinedataoptions",
|
|
2709
|
+
"NuveiIDealOptions": ".nuveiidealoptions",
|
|
2710
|
+
"NuveiIDealOptionsTypedDict": ".nuveiidealoptions",
|
|
2706
2711
|
"NuveiOptions": ".nuveioptions",
|
|
2707
2712
|
"NuveiOptionsTypedDict": ".nuveioptions",
|
|
2708
2713
|
"NuveiPSEOptions": ".nuveipseoptions",
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
import pydantic
|
|
6
|
+
from pydantic import model_serializer
|
|
7
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class NuveiIDealOptionsTypedDict(TypedDict):
|
|
11
|
+
custom_data: NotRequired[Nullable[str]]
|
|
12
|
+
r"""Additional data to be sent to Nuvei."""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class NuveiIDealOptions(BaseModel):
|
|
16
|
+
custom_data: Annotated[
|
|
17
|
+
OptionalNullable[str], pydantic.Field(alias="customData")
|
|
18
|
+
] = UNSET
|
|
19
|
+
r"""Additional data to be sent to Nuvei."""
|
|
20
|
+
|
|
21
|
+
@model_serializer(mode="wrap")
|
|
22
|
+
def serialize_model(self, handler):
|
|
23
|
+
optional_fields = ["customData"]
|
|
24
|
+
nullable_fields = ["customData"]
|
|
25
|
+
null_default_fields = []
|
|
26
|
+
|
|
27
|
+
serialized = handler(self)
|
|
28
|
+
|
|
29
|
+
m = {}
|
|
30
|
+
|
|
31
|
+
for n, f in type(self).model_fields.items():
|
|
32
|
+
k = f.alias or n
|
|
33
|
+
val = serialized.get(k)
|
|
34
|
+
serialized.pop(k, None)
|
|
35
|
+
|
|
36
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
37
|
+
is_set = (
|
|
38
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
39
|
+
or k in null_default_fields
|
|
40
|
+
) # pylint: disable=no-member
|
|
41
|
+
|
|
42
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
43
|
+
m[k] = val
|
|
44
|
+
elif val != UNSET_SENTINEL and (
|
|
45
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
46
|
+
):
|
|
47
|
+
m[k] = val
|
|
48
|
+
|
|
49
|
+
return m
|
|
@@ -167,6 +167,8 @@ class TransactionOutputTypedDict(TypedDict):
|
|
|
167
167
|
r"""The sales tax amount for this transaction, represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
|
|
168
168
|
merchant_tax_id: NotRequired[Nullable[str]]
|
|
169
169
|
r"""Merchant tax ID (for example, EIN or VAT number)."""
|
|
170
|
+
purchase_order_number: NotRequired[Nullable[str]]
|
|
171
|
+
r"""Invoice number or Purchase Order number."""
|
|
170
172
|
customer_reference_number: NotRequired[Nullable[str]]
|
|
171
173
|
r"""Customer code or reference."""
|
|
172
174
|
amount_includes_tax: NotRequired[Nullable[bool]]
|
|
@@ -385,6 +387,9 @@ class TransactionOutput(BaseModel):
|
|
|
385
387
|
merchant_tax_id: OptionalNullable[str] = UNSET
|
|
386
388
|
r"""Merchant tax ID (for example, EIN or VAT number)."""
|
|
387
389
|
|
|
390
|
+
purchase_order_number: OptionalNullable[str] = UNSET
|
|
391
|
+
r"""Invoice number or Purchase Order number."""
|
|
392
|
+
|
|
388
393
|
customer_reference_number: OptionalNullable[str] = UNSET
|
|
389
394
|
r"""Customer code or reference."""
|
|
390
395
|
|
|
@@ -443,6 +448,7 @@ class TransactionOutput(BaseModel):
|
|
|
443
448
|
"session_token",
|
|
444
449
|
"tax_amount",
|
|
445
450
|
"merchant_tax_id",
|
|
451
|
+
"purchase_order_number",
|
|
446
452
|
"customer_reference_number",
|
|
447
453
|
"amount_includes_tax",
|
|
448
454
|
"supplier_order_number",
|
|
@@ -487,6 +493,7 @@ class TransactionOutput(BaseModel):
|
|
|
487
493
|
"session_token",
|
|
488
494
|
"tax_amount",
|
|
489
495
|
"merchant_tax_id",
|
|
496
|
+
"purchase_order_number",
|
|
490
497
|
"customer_reference_number",
|
|
491
498
|
"amount_includes_tax",
|
|
492
499
|
"supplier_order_number",
|
|
@@ -24,6 +24,7 @@ from .latitudeoptions import LatitudeOptions, LatitudeOptionsTypedDict
|
|
|
24
24
|
from .mattildatapioptions import MattildaTapiOptions, MattildaTapiOptionsTypedDict
|
|
25
25
|
from .mockcardoptions import MockCardOptions, MockCardOptionsTypedDict
|
|
26
26
|
from .monatospeioptions import MonatoSpeiOptions, MonatoSpeiOptionsTypedDict
|
|
27
|
+
from .nuveiidealoptions import NuveiIDealOptions, NuveiIDealOptionsTypedDict
|
|
27
28
|
from .nuveioptions import NuveiOptions, NuveiOptionsTypedDict
|
|
28
29
|
from .nuveipseoptions import NuveiPSEOptions, NuveiPSEOptionsTypedDict
|
|
29
30
|
from .oxxooptions import OxxoOptions, OxxoOptionsTypedDict
|
|
@@ -101,6 +102,8 @@ class TransactionConnectionOptionsTypedDict(TypedDict):
|
|
|
101
102
|
r"""Custom options to be passed to the `mock-card` connector."""
|
|
102
103
|
nuvei_card: NotRequired[Nullable[NuveiOptionsTypedDict]]
|
|
103
104
|
r"""Custom options to be passed to the `nuvei-card` connector."""
|
|
105
|
+
nuvei_ideal: NotRequired[Nullable[NuveiIDealOptionsTypedDict]]
|
|
106
|
+
r"""Custom options to be passed to the `nuvei-ideal` connector."""
|
|
104
107
|
nuvei_pse: NotRequired[Nullable[NuveiPSEOptionsTypedDict]]
|
|
105
108
|
r"""Custom options to be passed to the `nuvei-pse` connector."""
|
|
106
109
|
oxxo_oxxo: NotRequired[Nullable[OxxoOptionsTypedDict]]
|
|
@@ -278,6 +281,11 @@ class TransactionConnectionOptions(BaseModel):
|
|
|
278
281
|
] = UNSET
|
|
279
282
|
r"""Custom options to be passed to the `nuvei-card` connector."""
|
|
280
283
|
|
|
284
|
+
nuvei_ideal: Annotated[
|
|
285
|
+
OptionalNullable[NuveiIDealOptions], pydantic.Field(alias="nuvei-ideal")
|
|
286
|
+
] = UNSET
|
|
287
|
+
r"""Custom options to be passed to the `nuvei-ideal` connector."""
|
|
288
|
+
|
|
281
289
|
nuvei_pse: Annotated[
|
|
282
290
|
OptionalNullable[NuveiPSEOptions], pydantic.Field(alias="nuvei-pse")
|
|
283
291
|
] = UNSET
|
|
@@ -362,6 +370,7 @@ class TransactionConnectionOptions(BaseModel):
|
|
|
362
370
|
"monato-spei",
|
|
363
371
|
"mock-card",
|
|
364
372
|
"nuvei-card",
|
|
373
|
+
"nuvei-ideal",
|
|
365
374
|
"nuvei-pse",
|
|
366
375
|
"oxxo-oxxo",
|
|
367
376
|
"paypal-paypal",
|
|
@@ -404,6 +413,7 @@ class TransactionConnectionOptions(BaseModel):
|
|
|
404
413
|
"monato-spei",
|
|
405
414
|
"mock-card",
|
|
406
415
|
"nuvei-card",
|
|
416
|
+
"nuvei-ideal",
|
|
407
417
|
"nuvei-pse",
|
|
408
418
|
"oxxo-oxxo",
|
|
409
419
|
"paypal-paypal",
|
|
@@ -223,6 +223,8 @@ class TransactionCreateTypedDict(TypedDict):
|
|
|
223
223
|
r"""The sales tax amount for this transaction, represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
|
|
224
224
|
merchant_tax_id: NotRequired[Nullable[str]]
|
|
225
225
|
r"""Merchant tax ID (for example, EIN or VAT number)."""
|
|
226
|
+
purchase_order_number: NotRequired[Nullable[str]]
|
|
227
|
+
r"""Invoice number or Purchase Order number."""
|
|
226
228
|
customer_reference_number: NotRequired[Nullable[str]]
|
|
227
229
|
r"""Customer code or reference."""
|
|
228
230
|
amount_includes_tax: NotRequired[Nullable[bool]]
|
|
@@ -358,6 +360,9 @@ class TransactionCreate(BaseModel):
|
|
|
358
360
|
merchant_tax_id: OptionalNullable[str] = UNSET
|
|
359
361
|
r"""Merchant tax ID (for example, EIN or VAT number)."""
|
|
360
362
|
|
|
363
|
+
purchase_order_number: OptionalNullable[str] = UNSET
|
|
364
|
+
r"""Invoice number or Purchase Order number."""
|
|
365
|
+
|
|
361
366
|
customer_reference_number: OptionalNullable[str] = UNSET
|
|
362
367
|
r"""Customer code or reference."""
|
|
363
368
|
|
|
@@ -411,6 +416,7 @@ class TransactionCreate(BaseModel):
|
|
|
411
416
|
"installment_count",
|
|
412
417
|
"tax_amount",
|
|
413
418
|
"merchant_tax_id",
|
|
419
|
+
"purchase_order_number",
|
|
414
420
|
"customer_reference_number",
|
|
415
421
|
"amount_includes_tax",
|
|
416
422
|
"supplier_order_number",
|
|
@@ -441,6 +447,7 @@ class TransactionCreate(BaseModel):
|
|
|
441
447
|
"installment_count",
|
|
442
448
|
"tax_amount",
|
|
443
449
|
"merchant_tax_id",
|
|
450
|
+
"purchase_order_number",
|
|
444
451
|
"customer_reference_number",
|
|
445
452
|
"amount_includes_tax",
|
|
446
453
|
"supplier_order_number",
|
gr4vy/transactions.py
CHANGED
|
@@ -778,6 +778,7 @@ class Transactions(BaseSDK):
|
|
|
778
778
|
installment_count: OptionalNullable[int] = UNSET,
|
|
779
779
|
tax_amount: OptionalNullable[int] = UNSET,
|
|
780
780
|
merchant_tax_id: OptionalNullable[str] = UNSET,
|
|
781
|
+
purchase_order_number: OptionalNullable[str] = UNSET,
|
|
781
782
|
customer_reference_number: OptionalNullable[str] = UNSET,
|
|
782
783
|
amount_includes_tax: OptionalNullable[bool] = UNSET,
|
|
783
784
|
supplier_order_number: OptionalNullable[str] = UNSET,
|
|
@@ -848,6 +849,7 @@ class Transactions(BaseSDK):
|
|
|
848
849
|
:param installment_count: The number of installments a buyer is required to make.
|
|
849
850
|
:param tax_amount: The sales tax amount for this transaction, represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`
|
|
850
851
|
:param merchant_tax_id: Merchant tax ID (for example, EIN or VAT number).
|
|
852
|
+
:param purchase_order_number: Invoice number or Purchase Order number.
|
|
851
853
|
:param customer_reference_number: Customer code or reference.
|
|
852
854
|
:param amount_includes_tax: Whether the tax is included in the amount.
|
|
853
855
|
:param supplier_order_number: The merchant's unique identifier for the sales order or invoice.
|
|
@@ -928,6 +930,7 @@ class Transactions(BaseSDK):
|
|
|
928
930
|
installment_count=installment_count,
|
|
929
931
|
tax_amount=tax_amount,
|
|
930
932
|
merchant_tax_id=merchant_tax_id,
|
|
933
|
+
purchase_order_number=purchase_order_number,
|
|
931
934
|
customer_reference_number=customer_reference_number,
|
|
932
935
|
amount_includes_tax=amount_includes_tax,
|
|
933
936
|
supplier_order_number=supplier_order_number,
|
|
@@ -1115,6 +1118,7 @@ class Transactions(BaseSDK):
|
|
|
1115
1118
|
installment_count: OptionalNullable[int] = UNSET,
|
|
1116
1119
|
tax_amount: OptionalNullable[int] = UNSET,
|
|
1117
1120
|
merchant_tax_id: OptionalNullable[str] = UNSET,
|
|
1121
|
+
purchase_order_number: OptionalNullable[str] = UNSET,
|
|
1118
1122
|
customer_reference_number: OptionalNullable[str] = UNSET,
|
|
1119
1123
|
amount_includes_tax: OptionalNullable[bool] = UNSET,
|
|
1120
1124
|
supplier_order_number: OptionalNullable[str] = UNSET,
|
|
@@ -1185,6 +1189,7 @@ class Transactions(BaseSDK):
|
|
|
1185
1189
|
:param installment_count: The number of installments a buyer is required to make.
|
|
1186
1190
|
:param tax_amount: The sales tax amount for this transaction, represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`
|
|
1187
1191
|
:param merchant_tax_id: Merchant tax ID (for example, EIN or VAT number).
|
|
1192
|
+
:param purchase_order_number: Invoice number or Purchase Order number.
|
|
1188
1193
|
:param customer_reference_number: Customer code or reference.
|
|
1189
1194
|
:param amount_includes_tax: Whether the tax is included in the amount.
|
|
1190
1195
|
:param supplier_order_number: The merchant's unique identifier for the sales order or invoice.
|
|
@@ -1265,6 +1270,7 @@ class Transactions(BaseSDK):
|
|
|
1265
1270
|
installment_count=installment_count,
|
|
1266
1271
|
tax_amount=tax_amount,
|
|
1267
1272
|
merchant_tax_id=merchant_tax_id,
|
|
1273
|
+
purchase_order_number=purchase_order_number,
|
|
1268
1274
|
customer_reference_number=customer_reference_number,
|
|
1269
1275
|
amount_includes_tax=amount_includes_tax,
|
|
1270
1276
|
supplier_order_number=supplier_order_number,
|
|
@@ -1,12 +1,26 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
|
-
from typing import Any, Optional
|
|
3
|
+
from typing import Any, Optional, Type, TypeVar, overload
|
|
4
4
|
|
|
5
5
|
import httpx
|
|
6
6
|
|
|
7
7
|
from .serializers import unmarshal_json
|
|
8
8
|
from gr4vy import errors
|
|
9
9
|
|
|
10
|
+
T = TypeVar("T")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@overload
|
|
14
|
+
def unmarshal_json_response(
|
|
15
|
+
typ: Type[T], http_res: httpx.Response, body: Optional[str] = None
|
|
16
|
+
) -> T: ...
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
@overload
|
|
20
|
+
def unmarshal_json_response(
|
|
21
|
+
typ: Any, http_res: httpx.Response, body: Optional[str] = None
|
|
22
|
+
) -> Any: ...
|
|
23
|
+
|
|
10
24
|
|
|
11
25
|
def unmarshal_json_response(
|
|
12
26
|
typ: Any, http_res: httpx.Response, body: Optional[str] = None
|
|
@@ -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=6e5v79drDtyfUzE2ZcxTX37i-PnIrILNHshb_4Ac4LM,454
|
|
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
|
|
@@ -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=ax7hieWL0oxgi_AeHWiHpW4XSWZRGHG1ZmZObTkMkwY,136048
|
|
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
|
|
@@ -258,6 +258,7 @@ gr4vy/models/networktokenpaymentmethodcreate.py,sha256=07GKq4ucvNLyTBuHoOMKCphxE
|
|
|
258
258
|
gr4vy/models/networktokens.py,sha256=JlNLQ7_ovv-VUIEnxEgtKObHq2CijkgZszlyTgbX5eY,522
|
|
259
259
|
gr4vy/models/networktokenstatus.py,sha256=R7Vd8ts3_VG4gspdcoDykBVtANGzoGTBI9TbZnl0hqY,333
|
|
260
260
|
gr4vy/models/nuveiairlinedataoptions.py,sha256=LRvIzboyvbAK83iIxfkDDLfspgA2hB04id4l5Vmjn4I,1925
|
|
261
|
+
gr4vy/models/nuveiidealoptions.py,sha256=5AkzXKvFFVu9DDqIo5sGimXjOE-6alSDW1WeiPRonSM,1560
|
|
261
262
|
gr4vy/models/nuveioptions.py,sha256=ms46xui6MunqvGv_SK9S1Q7VQo1UI0hju2kqjUFNeRE,2063
|
|
262
263
|
gr4vy/models/nuveipseoptions.py,sha256=0CtBMe2cxU6XToQamYy25jCD0rMAl2Ko2KETtNyta1Q,2426
|
|
263
264
|
gr4vy/models/oxxooptions.py,sha256=UjdEwwdwr-N7b8_3gwE1rgxjmfadQRghk9vzZmS4uPU,1910
|
|
@@ -351,13 +352,13 @@ gr4vy/models/threedsecuremethod.py,sha256=SZYNn4TSu2K_-VE458NaWtNpNZl1Y8WFJFQwMu
|
|
|
351
352
|
gr4vy/models/threedsecurestatus.py,sha256=ok7YxtoF76wJY9htTMKVmZqGWwDkVQPdFs3lEoIg9eI,356
|
|
352
353
|
gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
|
|
353
354
|
gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
|
|
354
|
-
gr4vy/models/transaction_output.py,sha256
|
|
355
|
+
gr4vy/models/transaction_output.py,sha256=fYx2NOQIyWWwVGjn8o91vUav1PiAHcfIrJ5KftJa8rk,25413
|
|
355
356
|
gr4vy/models/transactionbuyer_output.py,sha256=JGUni3lVy6ERIgzFP81RpjMJpfjdc19-O126OMb8QjM,3086
|
|
356
357
|
gr4vy/models/transactioncancel.py,sha256=KIptVtqlwZmoWhB0XgjJfNJS6u1q9Y8o2OH8Mq-zFWM,3193
|
|
357
358
|
gr4vy/models/transactioncapture_output.py,sha256=PIMt4SUkooYkZKt5k15Z-CdXHu3RBCL9Uez5RaOqEn4,3217
|
|
358
359
|
gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
|
|
359
|
-
gr4vy/models/transactionconnectionoptions.py,sha256=
|
|
360
|
-
gr4vy/models/transactioncreate.py,sha256=
|
|
360
|
+
gr4vy/models/transactionconnectionoptions.py,sha256=SjwcEvJc1wKBe3Bqu9CySf9AtkuO3QKJRh7-5JIXYe8,20051
|
|
361
|
+
gr4vy/models/transactioncreate.py,sha256=Eahl0eCaG8Jcf7YaTeYtjq4TgX1jJHPRvl1XuRiwAI8,27552
|
|
361
362
|
gr4vy/models/transactionevent_output.py,sha256=GaG3oyeYnyBaV1zTFgtCrnLj09urSZlziMfjpHpUiwo,3914
|
|
362
363
|
gr4vy/models/transactionevents.py,sha256=BIzlBBLSuci0j_k_HjJaK1QpKBhuqZkkaq1zbPHG6x0,2254
|
|
363
364
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
@@ -416,7 +417,7 @@ gr4vy/reports_sdk.py,sha256=S7SF4TvPf8DEBMjh9flsDBgfM76Nf-GQzQ3950_7aDI,59641
|
|
|
416
417
|
gr4vy/sdk.py,sha256=2hfDkFfqPXyFR8w4J0joQrk_5xirotLtFrRYu5glAq4,10519
|
|
417
418
|
gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
|
|
418
419
|
gr4vy/sessions.py,sha256=xuP2ijGiew7R9Ei4HxGSyysPl_dJ6O_TaKLuLPmnxZU,41621
|
|
419
|
-
gr4vy/transactions.py,sha256=
|
|
420
|
+
gr4vy/transactions.py,sha256=pc5jr5y7iY95IbubOSVfBhnuEHg9Kcoeugh7-u1L3cU,169583
|
|
420
421
|
gr4vy/transactions_refunds.py,sha256=lpOVupveezk8vzXI8CMUIUV2b889wYYvT4kF42KQU-M,43603
|
|
421
422
|
gr4vy/transactions_settlements.py,sha256=IHzgj9udsM2xA_-bsjGgnKy8Wo4FDqRoHbCipTZR8uw,27758
|
|
422
423
|
gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
@@ -435,10 +436,10 @@ gr4vy/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,
|
|
|
435
436
|
gr4vy/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
|
436
437
|
gr4vy/utils/security.py,sha256=VfMDCDFcnxNgffthL8icp_bjRV9FxtJbhK2DgNkSZMk,6016
|
|
437
438
|
gr4vy/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
|
|
438
|
-
gr4vy/utils/unmarshal_json_response.py,sha256=
|
|
439
|
+
gr4vy/utils/unmarshal_json_response.py,sha256=G4h8gLOK09kjhPiUZjgIMm6zntcbxpvb_mCpMR3mLhQ,870
|
|
439
440
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
440
441
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
441
442
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
442
|
-
gr4vy-1.7.
|
|
443
|
-
gr4vy-1.7.
|
|
444
|
-
gr4vy-1.7.
|
|
443
|
+
gr4vy-1.7.16.dist-info/METADATA,sha256=OjP5oY0ucTbT6ubuLZq_DYMNBcCih9OQUpnZKQgnph4,44093
|
|
444
|
+
gr4vy-1.7.16.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
445
|
+
gr4vy-1.7.16.dist-info/RECORD,,
|
|
File without changes
|