gr4vy 1.2.9__py3-none-any.whl → 1.2.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 +3 -3
- gr4vy/models/__init__.py +5 -0
- gr4vy/models/adyenautorescuesepascenariosenum.py +3 -1
- gr4vy/models/airline.py +7 -1
- gr4vy/models/airlineleg.py +7 -1
- gr4vy/models/airlinepassenger.py +7 -1
- gr4vy/models/antifrauddecision.py +9 -1
- gr4vy/models/approvaltarget.py +7 -1
- gr4vy/models/auditlogaction.py +8 -1
- gr4vy/models/braintreedynamicdatafieldsoptions.py +5 -1
- gr4vy/models/browserinfo.py +7 -1
- gr4vy/models/cancelstatus.py +8 -1
- gr4vy/models/capturestatus.py +7 -1
- gr4vy/models/cardtype.py +8 -1
- gr4vy/models/createsessionstatus.py +7 -1
- gr4vy/models/cvvresponsecode.py +7 -1
- gr4vy/models/definitionfieldformat.py +8 -1
- gr4vy/models/digitalwalletprovider.py +6 -1
- gr4vy/models/errorlocation.py +8 -1
- gr4vy/models/forterantifraudoptions.py +6 -1
- gr4vy/models/forterantifraudoptionscartitembasicitemdata.py +7 -1
- gr4vy/models/forterantifraudoptionscartitemdeliverydetails.py +6 -1
- gr4vy/models/giftcardredemptionstatus.py +7 -1
- gr4vy/models/giftcardserviceprovider.py +5 -1
- gr4vy/models/list_buyer_payment_methodsop.py +7 -1
- gr4vy/models/networktokenpaymentmethodcreate.py +7 -1
- gr4vy/models/networktokenstatus.py +7 -1
- gr4vy/models/nuveipseoptions.py +70 -0
- gr4vy/models/paymentlinkcreate.py +10 -1
- gr4vy/models/paymentlinkstatus.py +7 -1
- gr4vy/models/paymentmethodstatus.py +7 -1
- gr4vy/models/paymentservicestatus.py +8 -1
- gr4vy/models/payoutcategory.py +1 -1
- gr4vy/models/payoutstatus.py +7 -1
- gr4vy/models/refundstatus.py +8 -1
- gr4vy/models/refundtargettype.py +5 -1
- gr4vy/models/reportcreatortype.py +7 -1
- gr4vy/models/reportexecutionstatus.py +7 -1
- gr4vy/models/reportschedule.py +9 -1
- gr4vy/models/threedsecuremethod.py +7 -1
- gr4vy/models/threedsecurestatus.py +7 -1
- gr4vy/models/transactionconnectionoptions.py +10 -0
- gr4vy/models/transactionintent.py +7 -1
- gr4vy/models/transactionintentoutcome.py +6 -1
- gr4vy/models/transactionpaymentsource.py +7 -1
- gr4vy/models/userstatus.py +8 -1
- gr4vy/models/voidstatus.py +7 -1
- {gr4vy-1.2.9.dist-info → gr4vy-1.2.11.dist-info}/METADATA +1 -1
- {gr4vy-1.2.9.dist-info → gr4vy-1.2.11.dist-info}/RECORD +50 -49
- {gr4vy-1.2.9.dist-info → gr4vy-1.2.11.dist-info}/WHEEL +1 -1
gr4vy/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "gr4vy"
|
|
6
|
-
__version__: str = "1.2.
|
|
6
|
+
__version__: str = "1.2.11"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.2.
|
|
8
|
+
__gen_version__: str = "2.709.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.2.11 2.709.0 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
gr4vy/models/__init__.py
CHANGED
|
@@ -786,6 +786,7 @@ if TYPE_CHECKING:
|
|
|
786
786
|
NuveiAirlineDataOptionsTypedDict,
|
|
787
787
|
)
|
|
788
788
|
from .nuveioptions import NuveiOptions, NuveiOptionsTypedDict
|
|
789
|
+
from .nuveipseoptions import NuveiPSEOptions, NuveiPSEOptionsTypedDict
|
|
789
790
|
from .oxxooptions import OxxoOptions, OxxoOptionsTypedDict
|
|
790
791
|
from .paymentlink import PaymentLink, PaymentLinkTypedDict
|
|
791
792
|
from .paymentlinkcreate import Locale, PaymentLinkCreate, PaymentLinkCreateTypedDict
|
|
@@ -1730,6 +1731,8 @@ __all__ = [
|
|
|
1730
1731
|
"NuveiAirlineDataOptionsTypedDict",
|
|
1731
1732
|
"NuveiOptions",
|
|
1732
1733
|
"NuveiOptionsTypedDict",
|
|
1734
|
+
"NuveiPSEOptions",
|
|
1735
|
+
"NuveiPSEOptionsTypedDict",
|
|
1733
1736
|
"OrderBy",
|
|
1734
1737
|
"OxxoOptions",
|
|
1735
1738
|
"OxxoOptionsTypedDict",
|
|
@@ -2623,6 +2626,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2623
2626
|
"NuveiAirlineDataOptionsTypedDict": ".nuveiairlinedataoptions",
|
|
2624
2627
|
"NuveiOptions": ".nuveioptions",
|
|
2625
2628
|
"NuveiOptionsTypedDict": ".nuveioptions",
|
|
2629
|
+
"NuveiPSEOptions": ".nuveipseoptions",
|
|
2630
|
+
"NuveiPSEOptionsTypedDict": ".nuveipseoptions",
|
|
2626
2631
|
"OxxoOptions": ".oxxooptions",
|
|
2627
2632
|
"OxxoOptionsTypedDict": ".oxxooptions",
|
|
2628
2633
|
"PaymentLink": ".paymentlink",
|
|
@@ -7,7 +7,9 @@ from typing import Literal, Union
|
|
|
7
7
|
|
|
8
8
|
AdyenAutoRescueSepaScenariosEnum = Union[
|
|
9
9
|
Literal[
|
|
10
|
-
"AutoRescueSuccessfulFirst",
|
|
10
|
+
"AutoRescueSuccessfulFirst",
|
|
11
|
+
"AutoRescueSuccessfulSecond",
|
|
12
|
+
"AutoRescueFailed",
|
|
11
13
|
],
|
|
12
14
|
UnrecognizedStr,
|
|
13
15
|
]
|
gr4vy/models/airline.py
CHANGED
|
@@ -19,7 +19,13 @@ from typing import List, Literal, Union
|
|
|
19
19
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
TicketDeliveryMethod = Union[
|
|
22
|
+
TicketDeliveryMethod = Union[
|
|
23
|
+
Literal[
|
|
24
|
+
"electronic",
|
|
25
|
+
"other",
|
|
26
|
+
],
|
|
27
|
+
UnrecognizedStr,
|
|
28
|
+
]
|
|
23
29
|
|
|
24
30
|
|
|
25
31
|
class AirlineTypedDict(TypedDict):
|
gr4vy/models/airlineleg.py
CHANGED
|
@@ -17,7 +17,13 @@ from typing import Literal, Union
|
|
|
17
17
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
RouteType = Union[
|
|
20
|
+
RouteType = Union[
|
|
21
|
+
Literal[
|
|
22
|
+
"round_trip",
|
|
23
|
+
"one_way",
|
|
24
|
+
],
|
|
25
|
+
UnrecognizedStr,
|
|
26
|
+
]
|
|
21
27
|
|
|
22
28
|
|
|
23
29
|
class AirlineLegTypedDict(TypedDict):
|
gr4vy/models/airlinepassenger.py
CHANGED
|
@@ -17,7 +17,13 @@ from typing import Literal, Union
|
|
|
17
17
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
AgeGroup = Union[
|
|
20
|
+
AgeGroup = Union[
|
|
21
|
+
Literal[
|
|
22
|
+
"adult",
|
|
23
|
+
"infant",
|
|
24
|
+
],
|
|
25
|
+
UnrecognizedStr,
|
|
26
|
+
]
|
|
21
27
|
|
|
22
28
|
|
|
23
29
|
class AirlinePassengerTypedDict(TypedDict):
|
|
@@ -6,6 +6,14 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
AntiFraudDecision = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"accept",
|
|
11
|
+
"error",
|
|
12
|
+
"exception",
|
|
13
|
+
"reject",
|
|
14
|
+
"review",
|
|
15
|
+
"skipped",
|
|
16
|
+
"pending",
|
|
17
|
+
],
|
|
10
18
|
UnrecognizedStr,
|
|
11
19
|
]
|
gr4vy/models/approvaltarget.py
CHANGED
gr4vy/models/auditlogaction.py
CHANGED
|
@@ -6,6 +6,13 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
AuditLogAction = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"created",
|
|
11
|
+
"updated",
|
|
12
|
+
"deleted",
|
|
13
|
+
"voided",
|
|
14
|
+
"canceled",
|
|
15
|
+
"captured",
|
|
16
|
+
],
|
|
10
17
|
UnrecognizedStr,
|
|
11
18
|
]
|
|
@@ -17,7 +17,11 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
VaultPaymentMethodCriteria = Union[
|
|
20
|
-
Literal[
|
|
20
|
+
Literal[
|
|
21
|
+
"ALWAYS",
|
|
22
|
+
"ON_SUCCESSFUL_TRANSACTION",
|
|
23
|
+
],
|
|
24
|
+
UnrecognizedStr,
|
|
21
25
|
]
|
|
22
26
|
|
|
23
27
|
|
gr4vy/models/browserinfo.py
CHANGED
|
@@ -16,7 +16,13 @@ from typing import Literal, Union
|
|
|
16
16
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
UserDevice = Union[
|
|
19
|
+
UserDevice = Union[
|
|
20
|
+
Literal[
|
|
21
|
+
"desktop",
|
|
22
|
+
"mobile",
|
|
23
|
+
],
|
|
24
|
+
UnrecognizedStr,
|
|
25
|
+
]
|
|
20
26
|
r"""The platform that is being used to access the website."""
|
|
21
27
|
|
|
22
28
|
|
gr4vy/models/cancelstatus.py
CHANGED
|
@@ -5,4 +5,11 @@ from gr4vy.types import UnrecognizedStr
|
|
|
5
5
|
from typing import Literal, Union
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
CancelStatus = Union[
|
|
8
|
+
CancelStatus = Union[
|
|
9
|
+
Literal[
|
|
10
|
+
"succeeded",
|
|
11
|
+
"pending",
|
|
12
|
+
"failed",
|
|
13
|
+
],
|
|
14
|
+
UnrecognizedStr,
|
|
15
|
+
]
|
gr4vy/models/capturestatus.py
CHANGED
gr4vy/models/cardtype.py
CHANGED
gr4vy/models/cvvresponsecode.py
CHANGED
|
@@ -6,5 +6,12 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
DefinitionFieldFormat = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"text",
|
|
11
|
+
"multiline",
|
|
12
|
+
"number",
|
|
13
|
+
"timezone",
|
|
14
|
+
"boolean",
|
|
15
|
+
],
|
|
16
|
+
UnrecognizedStr,
|
|
10
17
|
]
|
gr4vy/models/errorlocation.py
CHANGED
|
@@ -25,7 +25,12 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
ForterAntiFraudOptionsDeliveryType = Union[
|
|
28
|
-
Literal[
|
|
28
|
+
Literal[
|
|
29
|
+
"DIGITAL",
|
|
30
|
+
"PHYSICAL",
|
|
31
|
+
"HYBRID",
|
|
32
|
+
],
|
|
33
|
+
UnrecognizedStr,
|
|
29
34
|
]
|
|
30
35
|
|
|
31
36
|
|
|
@@ -16,7 +16,13 @@ from typing import Literal, Union
|
|
|
16
16
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
Type = Union[
|
|
19
|
+
Type = Union[
|
|
20
|
+
Literal[
|
|
21
|
+
"TANGIBLE",
|
|
22
|
+
"NON_TANGIBLE",
|
|
23
|
+
],
|
|
24
|
+
UnrecognizedStr,
|
|
25
|
+
]
|
|
20
26
|
|
|
21
27
|
|
|
22
28
|
class ForterAntiFraudOptionsCartItemBasicItemDataTypedDict(TypedDict):
|
|
@@ -17,7 +17,12 @@ from typing_extensions import Annotated, NotRequired, TypedDict
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
ForterAntiFraudOptionsCartItemDeliveryDetailsDeliveryType = Union[
|
|
20
|
-
Literal[
|
|
20
|
+
Literal[
|
|
21
|
+
"DIGITAL",
|
|
22
|
+
"PHYSICAL",
|
|
23
|
+
"HYBRID",
|
|
24
|
+
],
|
|
25
|
+
UnrecognizedStr,
|
|
21
26
|
]
|
|
22
27
|
|
|
23
28
|
|
|
@@ -37,7 +37,13 @@ class ListBuyerPaymentMethodsGlobals(BaseModel):
|
|
|
37
37
|
r"""The ID of the merchant account to use for this request."""
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
OrderBy = Union[
|
|
40
|
+
OrderBy = Union[
|
|
41
|
+
Literal[
|
|
42
|
+
"asc",
|
|
43
|
+
"desc",
|
|
44
|
+
],
|
|
45
|
+
UnrecognizedStr,
|
|
46
|
+
]
|
|
41
47
|
r"""The direction to sort the payment methods in."""
|
|
42
48
|
|
|
43
49
|
|
|
@@ -18,7 +18,13 @@ from typing import Literal, Union
|
|
|
18
18
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
CardSource = Union[
|
|
21
|
+
CardSource = Union[
|
|
22
|
+
Literal[
|
|
23
|
+
"apple-pay",
|
|
24
|
+
"google-pay",
|
|
25
|
+
],
|
|
26
|
+
UnrecognizedStr,
|
|
27
|
+
]
|
|
22
28
|
|
|
23
29
|
|
|
24
30
|
class NetworkTokenPaymentMethodCreateTypedDict(TypedDict):
|
|
@@ -0,0 +1,70 @@
|
|
|
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 NuveiPSEOptionsTypedDict(TypedDict):
|
|
11
|
+
user_type: NotRequired[Nullable[str]]
|
|
12
|
+
r"""Customer type (\"N\" for persona natural, \"J\" for persona jurídica)"""
|
|
13
|
+
user_fis_number: NotRequired[Nullable[str]]
|
|
14
|
+
r"""Customer’s document type"""
|
|
15
|
+
fiscal_number: NotRequired[Nullable[str]]
|
|
16
|
+
r"""Customer’s document number"""
|
|
17
|
+
bank_code: NotRequired[Nullable[str]]
|
|
18
|
+
r"""The bank code of the selected bank"""
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class NuveiPSEOptions(BaseModel):
|
|
22
|
+
user_type: Annotated[OptionalNullable[str], pydantic.Field(alias="userType")] = (
|
|
23
|
+
UNSET
|
|
24
|
+
)
|
|
25
|
+
r"""Customer type (\"N\" for persona natural, \"J\" for persona jurídica)"""
|
|
26
|
+
|
|
27
|
+
user_fis_number: Annotated[
|
|
28
|
+
OptionalNullable[str], pydantic.Field(alias="userFisNumber")
|
|
29
|
+
] = UNSET
|
|
30
|
+
r"""Customer’s document type"""
|
|
31
|
+
|
|
32
|
+
fiscal_number: Annotated[
|
|
33
|
+
OptionalNullable[str], pydantic.Field(alias="fiscalNumber")
|
|
34
|
+
] = UNSET
|
|
35
|
+
r"""Customer’s document number"""
|
|
36
|
+
|
|
37
|
+
bank_code: Annotated[OptionalNullable[str], pydantic.Field(alias="bankCode")] = (
|
|
38
|
+
UNSET
|
|
39
|
+
)
|
|
40
|
+
r"""The bank code of the selected bank"""
|
|
41
|
+
|
|
42
|
+
@model_serializer(mode="wrap")
|
|
43
|
+
def serialize_model(self, handler):
|
|
44
|
+
optional_fields = ["userType", "userFisNumber", "fiscalNumber", "bankCode"]
|
|
45
|
+
nullable_fields = ["userType", "userFisNumber", "fiscalNumber", "bankCode"]
|
|
46
|
+
null_default_fields = []
|
|
47
|
+
|
|
48
|
+
serialized = handler(self)
|
|
49
|
+
|
|
50
|
+
m = {}
|
|
51
|
+
|
|
52
|
+
for n, f in type(self).model_fields.items():
|
|
53
|
+
k = f.alias or n
|
|
54
|
+
val = serialized.get(k)
|
|
55
|
+
serialized.pop(k, None)
|
|
56
|
+
|
|
57
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
58
|
+
is_set = (
|
|
59
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
60
|
+
or k in null_default_fields
|
|
61
|
+
) # pylint: disable=no-member
|
|
62
|
+
|
|
63
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
64
|
+
m[k] = val
|
|
65
|
+
elif val != UNSET_SENTINEL and (
|
|
66
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
67
|
+
):
|
|
68
|
+
m[k] = val
|
|
69
|
+
|
|
70
|
+
return m
|
|
@@ -26,7 +26,16 @@ from typing import Any, Dict, List, Literal, Optional, Union
|
|
|
26
26
|
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
Locale = Union[
|
|
29
|
+
Locale = Union[
|
|
30
|
+
Literal[
|
|
31
|
+
"en",
|
|
32
|
+
"en-GB",
|
|
33
|
+
"pt",
|
|
34
|
+
"pt-BR",
|
|
35
|
+
"es",
|
|
36
|
+
],
|
|
37
|
+
UnrecognizedStr,
|
|
38
|
+
]
|
|
30
39
|
|
|
31
40
|
|
|
32
41
|
class PaymentLinkCreateTypedDict(TypedDict):
|
|
@@ -6,6 +6,12 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
PaymentMethodStatus = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"processing",
|
|
11
|
+
"buyer_approval_required",
|
|
12
|
+
"succeeded",
|
|
13
|
+
"failed",
|
|
14
|
+
"paused",
|
|
15
|
+
],
|
|
10
16
|
UnrecognizedStr,
|
|
11
17
|
]
|
|
@@ -5,4 +5,11 @@ from gr4vy.types import UnrecognizedStr
|
|
|
5
5
|
from typing import Literal, Union
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
PaymentServiceStatus = Union[
|
|
8
|
+
PaymentServiceStatus = Union[
|
|
9
|
+
Literal[
|
|
10
|
+
"pending",
|
|
11
|
+
"created",
|
|
12
|
+
"failed",
|
|
13
|
+
],
|
|
14
|
+
UnrecognizedStr,
|
|
15
|
+
]
|
gr4vy/models/payoutcategory.py
CHANGED
gr4vy/models/payoutstatus.py
CHANGED
gr4vy/models/refundstatus.py
CHANGED
|
@@ -6,5 +6,12 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
RefundStatus = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"processing",
|
|
11
|
+
"succeeded",
|
|
12
|
+
"failed",
|
|
13
|
+
"declined",
|
|
14
|
+
"voided",
|
|
15
|
+
],
|
|
16
|
+
UnrecognizedStr,
|
|
10
17
|
]
|
gr4vy/models/refundtargettype.py
CHANGED
|
@@ -6,6 +6,12 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
ReportExecutionStatus = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"dispatched",
|
|
11
|
+
"failed",
|
|
12
|
+
"pending",
|
|
13
|
+
"processing",
|
|
14
|
+
"succeeded",
|
|
15
|
+
],
|
|
10
16
|
UnrecognizedStr,
|
|
11
17
|
]
|
gr4vy/models/reportschedule.py
CHANGED
|
@@ -5,4 +5,12 @@ from gr4vy.types import UnrecognizedStr
|
|
|
5
5
|
from typing import Literal, Union
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
ReportSchedule = Union[
|
|
8
|
+
ReportSchedule = Union[
|
|
9
|
+
Literal[
|
|
10
|
+
"daily",
|
|
11
|
+
"monthly",
|
|
12
|
+
"once",
|
|
13
|
+
"weekly",
|
|
14
|
+
],
|
|
15
|
+
UnrecognizedStr,
|
|
16
|
+
]
|
|
@@ -5,4 +5,10 @@ from gr4vy.types import UnrecognizedStr
|
|
|
5
5
|
from typing import Literal, Union
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
ThreeDSecureMethod = Union[
|
|
8
|
+
ThreeDSecureMethod = Union[
|
|
9
|
+
Literal[
|
|
10
|
+
"challenge",
|
|
11
|
+
"frictionless",
|
|
12
|
+
],
|
|
13
|
+
UnrecognizedStr,
|
|
14
|
+
]
|
|
@@ -6,6 +6,12 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
ThreeDSecureStatus = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"setup_error",
|
|
11
|
+
"error",
|
|
12
|
+
"declined",
|
|
13
|
+
"cancelled",
|
|
14
|
+
"complete",
|
|
15
|
+
],
|
|
10
16
|
UnrecognizedStr,
|
|
11
17
|
]
|
|
@@ -23,6 +23,7 @@ from .latitudeoptions import LatitudeOptions, LatitudeOptionsTypedDict
|
|
|
23
23
|
from .mattildatapioptions import MattildaTapiOptions, MattildaTapiOptionsTypedDict
|
|
24
24
|
from .mockcardoptions import MockCardOptions, MockCardOptionsTypedDict
|
|
25
25
|
from .nuveioptions import NuveiOptions, NuveiOptionsTypedDict
|
|
26
|
+
from .nuveipseoptions import NuveiPSEOptions, NuveiPSEOptionsTypedDict
|
|
26
27
|
from .oxxooptions import OxxoOptions, OxxoOptionsTypedDict
|
|
27
28
|
from .paypaloptions import PaypalOptions, PaypalOptionsTypedDict
|
|
28
29
|
from .powertranzoptions import PowertranzOptions, PowertranzOptionsTypedDict
|
|
@@ -94,6 +95,8 @@ class TransactionConnectionOptionsTypedDict(TypedDict):
|
|
|
94
95
|
r"""Custom options to be passed to the `mock-card` connector."""
|
|
95
96
|
nuvei_card: NotRequired[Nullable[NuveiOptionsTypedDict]]
|
|
96
97
|
r"""Custom options to be passed to the `nuvei-card` connector."""
|
|
98
|
+
nuvei_pse: NotRequired[Nullable[NuveiPSEOptionsTypedDict]]
|
|
99
|
+
r"""Custom options to be passed to the `nuvei-pse` connector."""
|
|
97
100
|
oxxo_oxxo: NotRequired[Nullable[OxxoOptionsTypedDict]]
|
|
98
101
|
r"""Custom options to be passed to the `oxxo-oxxo` connector."""
|
|
99
102
|
paypal_paypal: NotRequired[Nullable[PaypalOptionsTypedDict]]
|
|
@@ -259,6 +262,11 @@ class TransactionConnectionOptions(BaseModel):
|
|
|
259
262
|
] = UNSET
|
|
260
263
|
r"""Custom options to be passed to the `nuvei-card` connector."""
|
|
261
264
|
|
|
265
|
+
nuvei_pse: Annotated[
|
|
266
|
+
OptionalNullable[NuveiPSEOptions], pydantic.Field(alias="nuvei-pse")
|
|
267
|
+
] = UNSET
|
|
268
|
+
r"""Custom options to be passed to the `nuvei-pse` connector."""
|
|
269
|
+
|
|
262
270
|
oxxo_oxxo: Annotated[
|
|
263
271
|
OptionalNullable[OxxoOptions], pydantic.Field(alias="oxxo-oxxo")
|
|
264
272
|
] = UNSET
|
|
@@ -336,6 +344,7 @@ class TransactionConnectionOptions(BaseModel):
|
|
|
336
344
|
"mattilda-tapifintechs",
|
|
337
345
|
"mock-card",
|
|
338
346
|
"nuvei-card",
|
|
347
|
+
"nuvei-pse",
|
|
339
348
|
"oxxo-oxxo",
|
|
340
349
|
"paypal-paypal",
|
|
341
350
|
"paypal-paypalpaylater",
|
|
@@ -375,6 +384,7 @@ class TransactionConnectionOptions(BaseModel):
|
|
|
375
384
|
"mattilda-tapifintechs",
|
|
376
385
|
"mock-card",
|
|
377
386
|
"nuvei-card",
|
|
387
|
+
"nuvei-pse",
|
|
378
388
|
"oxxo-oxxo",
|
|
379
389
|
"paypal-paypal",
|
|
380
390
|
"paypal-paypalpaylater",
|
|
@@ -6,7 +6,13 @@ from typing import Literal, Union
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
TransactionPaymentSource = Union[
|
|
9
|
-
Literal[
|
|
9
|
+
Literal[
|
|
10
|
+
"ecommerce",
|
|
11
|
+
"moto",
|
|
12
|
+
"recurring",
|
|
13
|
+
"installment",
|
|
14
|
+
"card_on_file",
|
|
15
|
+
],
|
|
10
16
|
UnrecognizedStr,
|
|
11
17
|
]
|
|
12
18
|
r"""The way payment method information made it to this transaction."""
|
gr4vy/models/userstatus.py
CHANGED
|
@@ -5,4 +5,11 @@ from gr4vy.types import UnrecognizedStr
|
|
|
5
5
|
from typing import Literal, Union
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
UserStatus = Union[
|
|
8
|
+
UserStatus = Union[
|
|
9
|
+
Literal[
|
|
10
|
+
"active",
|
|
11
|
+
"pending",
|
|
12
|
+
"deleted",
|
|
13
|
+
],
|
|
14
|
+
UnrecognizedStr,
|
|
15
|
+
]
|
gr4vy/models/voidstatus.py
CHANGED
|
@@ -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=iDYF7k7_Tr0L39AVEsI_xxWJLWVikJQlipaARAKwVtQ,454
|
|
6
6
|
gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
|
|
7
7
|
gr4vy/all.py,sha256=WwnLoNn3RgXNpf4Xoz12ct94JD7NMpLz-kzesHHh4m8,15172
|
|
8
8
|
gr4vy/audit_logs.py,sha256=duh_c9mO8vIcpCnB-c77EYn1tkuCp1cRT6a7l0VdZqc,17083
|
|
@@ -40,7 +40,7 @@ gr4vy/gift_cards_sdk.py,sha256=vAyP-0LNSYKvgLQ0k6QQ-cj-cW2NN7cu2ekj5b3zJkI,57411
|
|
|
40
40
|
gr4vy/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
41
41
|
gr4vy/jobs.py,sha256=WHx0epnlxOMHFSXTJPwuI5dhOO_acGTX72Lbz6fvD8A,14565
|
|
42
42
|
gr4vy/merchant_accounts_sdk.py,sha256=itqNYsJi_j9qGVSRvfbP1gYjbLbOIpy-6qRWhrqofOk,82247
|
|
43
|
-
gr4vy/models/__init__.py,sha256=
|
|
43
|
+
gr4vy/models/__init__.py,sha256=CCgk3x_8oePwtAqIEBGvqE6EFl9EvOF9-zNQmSUOqfo,131595
|
|
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
|
|
@@ -51,7 +51,7 @@ gr4vy/models/add_buyerop.py,sha256=VvA4dKaBr3GhnRa8Ur3KUGDJ5wmz7sKGYi5t0X99L58,1
|
|
|
51
51
|
gr4vy/models/add_payment_linkop.py,sha256=QWYH_WjKZlEsvM_5PL3jwXWjQ84OpEn35GNdMEVLYq0,1557
|
|
52
52
|
gr4vy/models/add_reportop.py,sha256=EAvk_A8Orkv9GSZ9skQvUMgD_Ggzir4pCKaFFge1rIA,1500
|
|
53
53
|
gr4vy/models/address.py,sha256=jj5MjIw60x5rAnOm-LYAKewXoS1PNjrC4a9tNGU8sUs,3638
|
|
54
|
-
gr4vy/models/adyenautorescuesepascenariosenum.py,sha256=
|
|
54
|
+
gr4vy/models/adyenautorescuesepascenariosenum.py,sha256=iaeI-PH9j1pb4loW8MIO0I1HrEcD-ROOI7lUBdXGIVw,372
|
|
55
55
|
gr4vy/models/adyencardautorescuescenariosenum.py,sha256=GQFFiTURX0j_cLoFBR5ZXywoEfInuxaouhaSc6HzRCA,399
|
|
56
56
|
gr4vy/models/adyencardoptions.py,sha256=XZDxPjSWqL6AkPz-8KzhpuXUqZAut8RfbbRhwF_DRaY,4383
|
|
57
57
|
gr4vy/models/adyenoptions.py,sha256=zQxOllGQqehFs2r6Ymd-dxTO3fbKUmhQCzTVOZsyLTU,1680
|
|
@@ -59,14 +59,14 @@ gr4vy/models/adyensepaoptions.py,sha256=ApfD7jaL_xwRZhJ22FTaVvIoRY3MalRFX02yqFEv
|
|
|
59
59
|
gr4vy/models/adyensplitsoptions.py,sha256=txRWXyXoXYej0HIWlCsWKJUlXdFy-dqd38dnNeMkgEk,3207
|
|
60
60
|
gr4vy/models/affirmitineraryoptions.py,sha256=8ep1EBIA2YLFf2rFJjgp3_Xy8TX7uXRoo_T8XXjdcGU,2892
|
|
61
61
|
gr4vy/models/affirmoptions.py,sha256=mJ91Dx0jzIXH3O33GVN6yLJWzgOdC3BDoYM84fGdQvM,1927
|
|
62
|
-
gr4vy/models/airline.py,sha256=
|
|
63
|
-
gr4vy/models/airlineleg.py,sha256=
|
|
64
|
-
gr4vy/models/airlinepassenger.py,sha256=
|
|
65
|
-
gr4vy/models/antifrauddecision.py,sha256=
|
|
62
|
+
gr4vy/models/airline.py,sha256=_P9aCL2Tw3FiB0twt6S8lyeJctD4sfQrHuy19MIgOOo,7915
|
|
63
|
+
gr4vy/models/airlineleg.py,sha256=1spgF11jBzNLXJqn1fFKvw0qwMST2GtXnAu5rUGAt74,8127
|
|
64
|
+
gr4vy/models/airlinepassenger.py,sha256=r6JjXQvc1fitSBbV1VUIecyb114dyZZQuVwF1p6N98E,4556
|
|
65
|
+
gr4vy/models/antifrauddecision.py,sha256=5B6mW6hH3Go0uw9_m4ghcHypOpMDtGnkhc5uM6T41fo,384
|
|
66
66
|
gr4vy/models/applepaypaymentmethodcreate.py,sha256=M5kz8yeBjIS6_bJaoqmU1Vps8Giz60b7WU0ejyADbww,4226
|
|
67
67
|
gr4vy/models/applepaysessionrequest.py,sha256=1cZiA-8CbZc1NaAuDp6j2WKO6GTcw3sscUTJfAdT5Lo,656
|
|
68
|
-
gr4vy/models/approvaltarget.py,sha256=
|
|
69
|
-
gr4vy/models/auditlogaction.py,sha256=
|
|
68
|
+
gr4vy/models/approvaltarget.py,sha256=krVN1UPJHlmOoVtR3w5OyW0lBaVQ-7Rwo-dVmMiweNQ,288
|
|
69
|
+
gr4vy/models/auditlogaction.py,sha256=gBZedeTFy0p3uk1ATyuA4CJ17GjDRpV5EildTydXNYc,366
|
|
70
70
|
gr4vy/models/auditlogentries.py,sha256=zJpcTRayJdPPgW-qRnFxZmEATjxmfP9HFBYvmwL-CWk,2191
|
|
71
71
|
gr4vy/models/auditlogentry.py,sha256=MWuCcSDsNp68RSgEJnrtYc4k-_WQvCw6YHOtIv5KByk,2875
|
|
72
72
|
gr4vy/models/auditlogentryresource.py,sha256=D5ZZA3lK2mFWmNS_TOTr68tMRSnlhqbUQWIM_bt-PX0,599
|
|
@@ -74,22 +74,22 @@ gr4vy/models/auditlogentryuser.py,sha256=lpofD8s853q1-lGvFKLj5jSza_RdenvlRd6icgt
|
|
|
74
74
|
gr4vy/models/avsresponsecode.py,sha256=8ozUlzHAkMoAmIW3lBHkBPkZs62foCEvWHLdFYQC6Bg,409
|
|
75
75
|
gr4vy/models/billingdetails_input.py,sha256=_dAZlZgDxhrByze2tF5cRYmg8Qrm3hNcNCk3ogAfkns,3004
|
|
76
76
|
gr4vy/models/billingdetails_output.py,sha256=x-hzFKeM5zkpVYFbwKTMtsmV_vftRhZBtTSxcRdLgxs,3006
|
|
77
|
-
gr4vy/models/braintreedynamicdatafieldsoptions.py,sha256=
|
|
77
|
+
gr4vy/models/braintreedynamicdatafieldsoptions.py,sha256=e2OQ68dGwvxZamlo5HaioP0v9Sryt_s53htiyVZOdRo,2979
|
|
78
78
|
gr4vy/models/braintreeoptions.py,sha256=A8igahmK4kHgOhZ0tUHjwaDFpqy0K0nnSb5fZcfXwBQ,2701
|
|
79
|
-
gr4vy/models/browserinfo.py,sha256=
|
|
79
|
+
gr4vy/models/browserinfo.py,sha256=M32QRxLqysUhtZyU_6m8OnFmRnDHSRULrH-W91Z05lk,2683
|
|
80
80
|
gr4vy/models/buyer.py,sha256=KEN4eeI7HSPr8NcrR8ieEhwCeqZpALWHwCebfRSeL7U,3569
|
|
81
81
|
gr4vy/models/buyercreate.py,sha256=bFhAzie6osvQYc8YSlCwwZuEIaTmgmddVpD607fbHNQ,2555
|
|
82
82
|
gr4vy/models/buyers.py,sha256=QJLFFT-l3RUGww78h-BqYTt7Mr-fLUs9VDrK2wl3naU,2133
|
|
83
83
|
gr4vy/models/buyerupdate.py,sha256=tiPp2oKZYemrRp0uCt0sO6x-nlKNmtvIIzTmRCBe_h4,2567
|
|
84
84
|
gr4vy/models/cancel_transactionop.py,sha256=RBsqNruvMIWAHkhPT_s4GPu3pWlf_NfKJWNXc9HrvxI,1511
|
|
85
|
-
gr4vy/models/cancelstatus.py,sha256=
|
|
85
|
+
gr4vy/models/cancelstatus.py,sha256=9yb-oK8IL6apWdp1wmZBAqP9TYrz8vXG4Bbc3rQrXGE,307
|
|
86
86
|
gr4vy/models/capture_transactionop.py,sha256=-mWQC7dDILr0PKYgC6mOTcD2vYRtumbd92IAbbf67MM,3726
|
|
87
|
-
gr4vy/models/capturestatus.py,sha256=
|
|
87
|
+
gr4vy/models/capturestatus.py,sha256=hyWAsFmt13M-veZi2e44itOuA-1GT3XUw3ybzYANoH0,328
|
|
88
88
|
gr4vy/models/cardpaymentmethodcreate.py,sha256=WQPt3NYDIPV0lCDQ8rB4Tqzu9JNkh0_UrgwJZeCI6SQ,3498
|
|
89
89
|
gr4vy/models/cardscheme.py,sha256=-kRYwYRl4KUkTuUR23IJCOs3EHp35RHryp7769xruvg,698
|
|
90
90
|
gr4vy/models/cardschemedefinition.py,sha256=MgFLopNSUGKdizom3RE8iJlfNk1AjB4YWEZnwehIsds,1182
|
|
91
91
|
gr4vy/models/cardschemedefinitions.py,sha256=rFbZPBCYXCXltVYffBpjbck5VHSq44rALhfkaWf-WXw,578
|
|
92
|
-
gr4vy/models/cardtype.py,sha256=
|
|
92
|
+
gr4vy/models/cardtype.py,sha256=NKubknj2_Bps4G8-TEZC3sOjpeKRGX42R3eXmmyzR2I,299
|
|
93
93
|
gr4vy/models/cardwithurlpaymentmethodcreate.py,sha256=-wb5hnuwpgpG9PGDIapbHuqYZibKfTojiP1S0DuXL88,3934
|
|
94
94
|
gr4vy/models/cartitem.py,sha256=Hii-sbOSu0EaGze0P0GrSvW-Tlu2eeB_s8v_23LUtpM,7830
|
|
95
95
|
gr4vy/models/checkoutpayoutoptions.py,sha256=TVvoTLsY4NYo6MJyEDEPZIU7FWodTvo-H-LfGdDiUtY,638
|
|
@@ -122,15 +122,15 @@ gr4vy/models/create_report_execution_urlop.py,sha256=Vv_oWpull2h7qdA3REtTrgJp-G0
|
|
|
122
122
|
gr4vy/models/create_transaction_refundop.py,sha256=kw0bUw1bBJ3j8Xi4-Twofii6XBu8AoIdq7V9JDJisQE,1906
|
|
123
123
|
gr4vy/models/create_transactionop.py,sha256=yhv2B7gUax4hg-bZgbMn4ulq999kl1pRmcrkKqXmwOk,3957
|
|
124
124
|
gr4vy/models/createsession.py,sha256=mvinnfvkcaulzDkdXYTqQ60P9vptb75_dbGVGxL5I6s,2980
|
|
125
|
-
gr4vy/models/createsessionstatus.py,sha256=
|
|
125
|
+
gr4vy/models/createsessionstatus.py,sha256=8RrlFPRhsWBPCUjVhOpz-x-DIzEq7LVjavaK3_XIAJM,295
|
|
126
126
|
gr4vy/models/creator.py,sha256=Qm1VNJ05FvmkQapLfKYlX5xzJYf1eZlvQpvlq7pXN2s,347
|
|
127
127
|
gr4vy/models/cryptogram.py,sha256=dBVn-OSRioaHJMiIfxmBmoVlgWyLc3s30HV6icB0c3o,944
|
|
128
128
|
gr4vy/models/cryptogramcreate.py,sha256=pmsbZ39jzdrRAnWR0flBcITzPT9QcIJOYp9k0znxic8,451
|
|
129
|
-
gr4vy/models/cvvresponsecode.py,sha256=
|
|
129
|
+
gr4vy/models/cvvresponsecode.py,sha256=SQpPGT-7mO9xwsDiIjGAZ-zQjXvKmH_jfvg0q7RroIU,336
|
|
130
130
|
gr4vy/models/cybersourceantifraudoptions.py,sha256=bIW9BcHTBrRYHwLehdwbIu50x-1ZMfNVkz0D5qevf6A,2622
|
|
131
131
|
gr4vy/models/cybersourceoptions.py,sha256=tXg4iptc9zWnPabNOqZm1pfKeSGOq3NahAu4dTP2On4,2552
|
|
132
132
|
gr4vy/models/definitionfield.py,sha256=qi8JYRDSDgHLz3Hcug0M95ZAvm8SyPT-qldy-YD9MPI,1606
|
|
133
|
-
gr4vy/models/definitionfieldformat.py,sha256=
|
|
133
|
+
gr4vy/models/definitionfieldformat.py,sha256=iFx1ro4waAIZtqp_ouwfHVILF1erz_Hh7nzfpeIb4o0,352
|
|
134
134
|
gr4vy/models/delete_buyer_shipping_detailsop.py,sha256=hdFEhMJ-tZGm0y-dcXzFpjq84zoxa728DIgrrji0H6g,1847
|
|
135
135
|
gr4vy/models/delete_buyerop.py,sha256=cPvOttwXSa_ELdz0FIrmAZRL56vmot-b2P5aUg2bWMM,1485
|
|
136
136
|
gr4vy/models/delete_checkout_sessionop.py,sha256=JUEInh4e8vfoIndLlO0iIeI7iVz-FrZcLO5weim3eIE,1531
|
|
@@ -144,26 +144,26 @@ gr4vy/models/detailedsettlementreportspec.py,sha256=Qx99ZGhNZAbzGDy29Wem4pj4V5rO
|
|
|
144
144
|
gr4vy/models/digitalwallet.py,sha256=QERrVZ3w7UruL7nOvRH7i3_lcQLybnRxI8-rXkWA8hE,5320
|
|
145
145
|
gr4vy/models/digitalwalletcreate.py,sha256=isYubdI0fXkTc7NdLLMVu4wqjI6aOs8KiW45wbZX7qc,2511
|
|
146
146
|
gr4vy/models/digitalwalletdomain.py,sha256=CH553YgC6Zy4eADwwUcqxt0L1UOuk7K8VvzXONjN-Dc,393
|
|
147
|
-
gr4vy/models/digitalwalletprovider.py,sha256=
|
|
147
|
+
gr4vy/models/digitalwalletprovider.py,sha256=pR-U_3K1Dc0yDf_5yLlJnrQNk9ouW1g6oD6hQzaZxr4,317
|
|
148
148
|
gr4vy/models/digitalwallets.py,sha256=SFR6JzoW3TOatmjsIS0S3Z0CeDv0PpjCVAqlnDntQOg,529
|
|
149
149
|
gr4vy/models/digitalwalletupdate.py,sha256=FKktsXy6qXQAZ1DFgUXQNG8Itkh_m_p42BE_JQe95uc,2274
|
|
150
150
|
gr4vy/models/dlocaloptions.py,sha256=F4kT1ajx4VpqwJ6emXS1tuo5JdngpiWTjyFUYhmgt7o,1644
|
|
151
151
|
gr4vy/models/dlocalwalletoptions.py,sha256=Sl-33dTg3s9un9P9CT7gJmqvMlKilsuLsTPLgJFwD60,2630
|
|
152
152
|
gr4vy/models/errordetail.py,sha256=51ElDd0o-b-S0qVIICvT8bShPfC8r1dvpqFtav79Ki4,1009
|
|
153
|
-
gr4vy/models/errorlocation.py,sha256=
|
|
153
|
+
gr4vy/models/errorlocation.py,sha256=gj81USXXcU1lDoDGgY4r9CFXuyfaSP3xrxF4FVZqb8E,336
|
|
154
154
|
gr4vy/models/expire_payment_linkop.py,sha256=8mht-4go2WIZ952xjblCr604EBVjY90VV-lrDgRoe0o,1549
|
|
155
155
|
gr4vy/models/field.py,sha256=0RhyjGKhi2VQ2nwpccNa8VebJbRM2fnVL_Tophp_SeA,572
|
|
156
156
|
gr4vy/models/fiservinstallmentoptions.py,sha256=gkEIrbECotEMSZ1uzjxQ-q6CM1q6s_0P5LOuKychFTA,3174
|
|
157
157
|
gr4vy/models/fiservoptions.py,sha256=vrA5y1DRsVbFFZ3y1f3y9XZWahrPtAPa0uYr-dZ5Xf0,1885
|
|
158
|
-
gr4vy/models/forterantifraudoptions.py,sha256=
|
|
158
|
+
gr4vy/models/forterantifraudoptions.py,sha256=ZdH4nFBPoFiCzpXGcge1s9aAeK0fSqqXuzkxXQ-uOR8,3457
|
|
159
159
|
gr4vy/models/forterantifraudoptionscartitem.py,sha256=Pp0YWzKCgwMM_RyZVyFd2q9vwNWQJ8cZsr6yJW3lfcM,2923
|
|
160
|
-
gr4vy/models/forterantifraudoptionscartitembasicitemdata.py,sha256=
|
|
160
|
+
gr4vy/models/forterantifraudoptionscartitembasicitemdata.py,sha256=_uwQEgi6aBv-RYzir9DVpadzzdmpNKWMg6HHXPRAPP0,1935
|
|
161
161
|
gr4vy/models/forterantifraudoptionscartitembeneficiary.py,sha256=NaS2eNRglddg4YQctkjZlg6TNCWHry92W59Y0x7heLU,3258
|
|
162
162
|
gr4vy/models/forterantifraudoptionscartitembeneficiaryaddress.py,sha256=GOEOm7F2fTEkUpDWs4cSlPgDNMTJXw6LMqCNLkxjiG8,2751
|
|
163
163
|
gr4vy/models/forterantifraudoptionscartitembeneficiarycomments.py,sha256=CT2Bql-VBK_ovcoUVN5I4MsmPVVccgg1aIrbWZeU8Rg,2252
|
|
164
164
|
gr4vy/models/forterantifraudoptionscartitembeneficiarypersonaldetails.py,sha256=q1swJSBhHUw5QejAviD_vEzYgrc3oEyaAOj3rryRzXY,1920
|
|
165
165
|
gr4vy/models/forterantifraudoptionscartitembeneficiaryphone.py,sha256=5kf8z-7uLYzPKTVv8WqkLjWD_UZoLVIy5VnCopEigCo,451
|
|
166
|
-
gr4vy/models/forterantifraudoptionscartitemdeliverydetails.py,sha256=
|
|
166
|
+
gr4vy/models/forterantifraudoptionscartitemdeliverydetails.py,sha256=yhGeKIQrjnMNXxdM8uJ_XyDitNxQkXVvBYDKjUjkXw0,2352
|
|
167
167
|
gr4vy/models/forterantifraudoptionsdiscount.py,sha256=J3m9FE3j62gyeRX8SWdWxGM_r1kMhcmeiK1buGOPiz0,2466
|
|
168
168
|
gr4vy/models/forterantifraudoptionsdiscountcoupondiscountamount.py,sha256=E2bMdGeMOK4EzVgltnTY_R1xjGGLe5KhBNR4FQ8grW0,1998
|
|
169
169
|
gr4vy/models/get_buyer_shipping_detailsop.py,sha256=DbuYHNOj9uu9XNK997ioPv9_paCPPrjzxpSwQv6U74k,1843
|
|
@@ -188,11 +188,11 @@ gr4vy/models/giftcardbalancerequest.py,sha256=EMcEGcKHWmh-r9owGaYWDhtKHhuR_rDvh7
|
|
|
188
188
|
gr4vy/models/giftcardcreate.py,sha256=AJBqa9Qc74jPwlDeLdFunmySbkoVkx9UNiYdG_C7r6A,2390
|
|
189
189
|
gr4vy/models/giftcarderrorcode.py,sha256=RjrAZWnnb4hWkON3hQoMhChExAYVQgz_PsoROsCR820,940
|
|
190
190
|
gr4vy/models/giftcardredemption.py,sha256=G64Gn5cPXhyMd5UfK-WBrUHAPwP7-iCc9UTdKQZ75AY,4472
|
|
191
|
-
gr4vy/models/giftcardredemptionstatus.py,sha256=
|
|
191
|
+
gr4vy/models/giftcardredemptionstatus.py,sha256=qacGQVIjwHvbNtb-u0X01eB2UJjO0wpjUlVZ9A-C3fk,338
|
|
192
192
|
gr4vy/models/giftcardrequest.py,sha256=Phc35lT-lr5d96Z9upofIk1p0aZDjwE4nUGudkVE1wo,648
|
|
193
193
|
gr4vy/models/giftcards.py,sha256=RlHQpfN-NJ5SSOoqdaZtid-A6OW-WO0lftIwoGaKHPA,2154
|
|
194
194
|
gr4vy/models/giftcardservice.py,sha256=JuABPg8NvFsOtUacT9_UkVMkVIKAVolwjRuwlkcpV0M,1333
|
|
195
|
-
gr4vy/models/giftcardserviceprovider.py,sha256=
|
|
195
|
+
gr4vy/models/giftcardserviceprovider.py,sha256=aKTINgsnEamd4mTecPjMreMX7TfU3AqAU99ubOALnQM,318
|
|
196
196
|
gr4vy/models/giftcardstoredrequest.py,sha256=Q3ed5Cq7SRkKepAMAg9NByyx_UDFKHlz1aADGIRFHfQ,539
|
|
197
197
|
gr4vy/models/giftcardsummaries.py,sha256=ViqxAEYN0rIQYp4q9TVmilymuOqTl7HSD-M7qS5Tq1s,545
|
|
198
198
|
gr4vy/models/giftcardsummary.py,sha256=V6cPakvA1_iLm9-rRxQk7wbIgGvuHxq7idYHTQy3lME,5295
|
|
@@ -214,7 +214,7 @@ gr4vy/models/latitudeoptions.py,sha256=dswG3n30p01I1F7R49WvUvu6WSCdQUw0E47ipuWgK
|
|
|
214
214
|
gr4vy/models/list_all_report_executionsop.py,sha256=ndtvXxp1Lv78pdH7kyE_3nVs0OjWRoS0T4Nrj_SKkuU,6624
|
|
215
215
|
gr4vy/models/list_audit_logsop.py,sha256=iJBHf5NQyhK-ZKJr2BKKHPfZ9NSwXmZGhaUAXA21PrA,4842
|
|
216
216
|
gr4vy/models/list_buyer_gift_cardsop.py,sha256=ZXf7oj9vZdqjhY7Z2Mo_wTI79nGWCQlr8cFGRZhrlDY,2839
|
|
217
|
-
gr4vy/models/list_buyer_payment_methodsop.py,sha256=
|
|
217
|
+
gr4vy/models/list_buyer_payment_methodsop.py,sha256=PRNrXZ_-JmKDJhJBspp9IAwNuGdIzg-RSWgiDhtZZHI,5347
|
|
218
218
|
gr4vy/models/list_buyer_shipping_detailsop.py,sha256=4EblvOMNutoM0ykaa1731kfDG0QQvt8HA-CgySLi7Z4,1583
|
|
219
219
|
gr4vy/models/list_buyersop.py,sha256=wqLqRLcbPfx5_-qnRIGgiaSugvIID1Jk_sovvexfUXw,4109
|
|
220
220
|
gr4vy/models/list_card_scheme_definitionsop.py,sha256=IaFNONC5cfSOCbUCcL4RedxN24hh4GVEsbxTYjwdPjg,1306
|
|
@@ -249,21 +249,22 @@ gr4vy/models/mockcardoptions.py,sha256=6RLlkJrLU42bwd7u-8uonYSlQbwXYGytQk64wypM4
|
|
|
249
249
|
gr4vy/models/mode.py,sha256=TNSHFVZ2UfdqE7fjJHt88v7dOwdxIZPTBcSkqDxStXE,391
|
|
250
250
|
gr4vy/models/networktoken.py,sha256=oHxWBWhKz31He-MvuZj4lExlijNAXEGzKEUbrwYoizc,2027
|
|
251
251
|
gr4vy/models/networktokencreate.py,sha256=amNEfXC0wLIrtn6vSS_IsDnRXeziIqvhtItPY9QPbds,2012
|
|
252
|
-
gr4vy/models/networktokenpaymentmethodcreate.py,sha256=
|
|
252
|
+
gr4vy/models/networktokenpaymentmethodcreate.py,sha256=07GKq4ucvNLyTBuHoOMKCphxEgMOzt4fpWISg5hWZrw,4356
|
|
253
253
|
gr4vy/models/networktokens.py,sha256=JlNLQ7_ovv-VUIEnxEgtKObHq2CijkgZszlyTgbX5eY,522
|
|
254
|
-
gr4vy/models/networktokenstatus.py,sha256=
|
|
254
|
+
gr4vy/models/networktokenstatus.py,sha256=R7Vd8ts3_VG4gspdcoDykBVtANGzoGTBI9TbZnl0hqY,333
|
|
255
255
|
gr4vy/models/nuveiairlinedataoptions.py,sha256=LRvIzboyvbAK83iIxfkDDLfspgA2hB04id4l5Vmjn4I,1925
|
|
256
256
|
gr4vy/models/nuveioptions.py,sha256=ms46xui6MunqvGv_SK9S1Q7VQo1UI0hju2kqjUFNeRE,2063
|
|
257
|
+
gr4vy/models/nuveipseoptions.py,sha256=0CtBMe2cxU6XToQamYy25jCD0rMAl2Ko2KETtNyta1Q,2426
|
|
257
258
|
gr4vy/models/oxxooptions.py,sha256=UjdEwwdwr-N7b8_3gwE1rgxjmfadQRghk9vzZmS4uPU,1910
|
|
258
259
|
gr4vy/models/paymentlink.py,sha256=8fg_b72DMH3V3c3mhvVW7sy4HmEuUgce11wp3Hmnhfo,8050
|
|
259
|
-
gr4vy/models/paymentlinkcreate.py,sha256=
|
|
260
|
+
gr4vy/models/paymentlinkcreate.py,sha256=8YYF6nr5sQauft4gy-Hcfcq-ADNpTzOjnS9zPs8Bww8,7427
|
|
260
261
|
gr4vy/models/paymentlinks.py,sha256=i7Sj7x18rY5HR-E_LkinvTpVjnl8aCMCldQJFXnV9Lk,2175
|
|
261
|
-
gr4vy/models/paymentlinkstatus.py,sha256=
|
|
262
|
+
gr4vy/models/paymentlinkstatus.py,sha256=e09HkfXNZDZSN_lkHCyiW7IaI-8JtM-_UmSOQ_im7ZE,334
|
|
262
263
|
gr4vy/models/paymentmethod.py,sha256=0JMRPQjRTz78EYHL1cUmAGeKOjLLMyHEw9-d2Cj_kCo,9416
|
|
263
264
|
gr4vy/models/paymentmethodcard.py,sha256=-ORChz62-Lucg7YQbul29laVDsxflDJjIhHSXUru9mA,2727
|
|
264
265
|
gr4vy/models/paymentmethoddetailscard.py,sha256=FH5LZkKpXm-GMJ6tLH4-WMEtW6syYOFi49JyyKq0BNM,1837
|
|
265
266
|
gr4vy/models/paymentmethods.py,sha256=KYpooSk-VfLJYror_5N7Y8CECdK3VOBRS20sJQMZucc,2189
|
|
266
|
-
gr4vy/models/paymentmethodstatus.py,sha256=
|
|
267
|
+
gr4vy/models/paymentmethodstatus.py,sha256=yLhYIXrB7m2i8_NNx6uX-mN2VQN_3eIEHVqKxclw0pU,370
|
|
267
268
|
gr4vy/models/paymentmethodstoredcard.py,sha256=-eJedn0lPGka3ChipisusyadKcF_vaUYtOJIVfnKJAo,829
|
|
268
269
|
gr4vy/models/paymentmethodsummaries.py,sha256=IFAC3w_TIQJbIyebLaotn91QzGyeuyWwAWKgBTzaZ9Q,580
|
|
269
270
|
gr4vy/models/paymentmethodsummary.py,sha256=pNYYUbuvjn-d4T5Quuf0o3lWVnrmctkxoKOEQXuX6AA,8104
|
|
@@ -278,18 +279,18 @@ gr4vy/models/paymentservicecreate.py,sha256=OTOwuJmTD5wavfDcIdNQS-LY5xiJORDuk6eM
|
|
|
278
279
|
gr4vy/models/paymentservicedefinition.py,sha256=kiqXkni1gnX58AQe9x61U9B-O7xmRBsn7im17dEo4Fg,4728
|
|
279
280
|
gr4vy/models/paymentservicedefinitions.py,sha256=S_TgLdNAolpMAS9RjTc2bDQO__gxi9LhvUe6CzWNsaE,2279
|
|
280
281
|
gr4vy/models/paymentservices.py,sha256=5bhZVK6sSWBxDD6IhbXlCLIOctd50Gk3xPyGdowJMTw,2196
|
|
281
|
-
gr4vy/models/paymentservicestatus.py,sha256=
|
|
282
|
+
gr4vy/models/paymentservicestatus.py,sha256=tKYRuNd4ix9d5dRfOlRZChHKDkHgGKac-k2IYe3Pa8Y,313
|
|
282
283
|
gr4vy/models/paymentservicetoken.py,sha256=SeGwVo0NKCRAygM0-R2Xy1WTN7ZLrHOa6PeKwL-aUAk,3588
|
|
283
284
|
gr4vy/models/paymentservicetokencreate.py,sha256=VFAX1indCtSLlUdGSMq5SHJcfoCi7t4QQCG6aIVDycY,2014
|
|
284
285
|
gr4vy/models/paymentservicetokens.py,sha256=zRBGaNBKVr0NXZgQ7TZDEJDJbBbJ7sqkgMDqVCddnts,571
|
|
285
286
|
gr4vy/models/paymentserviceupdate.py,sha256=B3GxHUOtiP13Fblgrb3GdPHQDaEG2EbZYlKwTZ39-xg,6271
|
|
286
|
-
gr4vy/models/payoutcategory.py,sha256=
|
|
287
|
+
gr4vy/models/payoutcategory.py,sha256=j5n2IQexJJCkWRnRoZfoZ9JNddYB84KelMmD2JpY4Fs,253
|
|
287
288
|
gr4vy/models/payoutconnectionoptions.py,sha256=vtSPfpo_GRIMoyf0WN1NaTa14cfJT4MFrEsvYaSDyT4,1749
|
|
288
289
|
gr4vy/models/payoutcreate.py,sha256=JENoavwLN_hDZUh3ud4CWwxak8ycim8TtWFAItQDs1E,5937
|
|
289
290
|
gr4vy/models/payoutmerchant.py,sha256=iY98n8DiVPY1a5hmzO9BOVFRKTq4cgMZg5N7RkxLhf4,2656
|
|
290
291
|
gr4vy/models/payoutmerchantsummary.py,sha256=BZFrzFYEQwZ5cAsUK_YbTvFZGgAc0oTcvzaXGiBf31w,3381
|
|
291
292
|
gr4vy/models/payoutpaymentservice.py,sha256=hdY8gf6uG9GHxBKve9OatNiRoKSCsoDClGlvJua0Zkg,2653
|
|
292
|
-
gr4vy/models/payoutstatus.py,sha256=
|
|
293
|
+
gr4vy/models/payoutstatus.py,sha256=noJUkRfZ4ShNUbU9Lo1c8x5UzPVy3bselJ3-fcN_yKM,327
|
|
293
294
|
gr4vy/models/payoutsummaries.py,sha256=n9rCKfAKn77Cyvy8WCfkKtCTI-wDxSJNraJBqT_RnV8,2191
|
|
294
295
|
gr4vy/models/payoutsummary.py,sha256=qnx3ShxDXmkKk8LXgGDtVatyxPqPjXneYarXGK_AiOQ,5435
|
|
295
296
|
gr4vy/models/paypaloptions.py,sha256=NIFg4LSHHC0V0SOFvJ6Q5ya3WtzFLeqNKYNt2mIK9oQ,1666
|
|
@@ -299,20 +300,20 @@ gr4vy/models/recipient.py,sha256=ORw0V4wDt3ytidIDj0Dmut92naYoRkMznh0LKuK17Rs,256
|
|
|
299
300
|
gr4vy/models/redirectpaymentmethodcreate.py,sha256=VRATGeLvAUcpvmvb2v6JiWe9xAcOnd1l8Tsf_bPvvUo,5837
|
|
300
301
|
gr4vy/models/refund.py,sha256=6yBk44ZwtM44wqaSCLHfVLJfeOt8OXMy9G9n8GA2FC4,7696
|
|
301
302
|
gr4vy/models/refunds.py,sha256=CdTbSo1PQSsS8U1atlwOYnFS-po7u_KA1lA3XpPsqfI,2140
|
|
302
|
-
gr4vy/models/refundstatus.py,sha256=
|
|
303
|
-
gr4vy/models/refundtargettype.py,sha256=
|
|
303
|
+
gr4vy/models/refundstatus.py,sha256=IRfLXRsVgJO8rhPRPJFdVrm1k-VIDOdQGyeHpk7ht3k,348
|
|
304
|
+
gr4vy/models/refundtargettype.py,sha256=zJl8wcVypVgm8OktzKgaTMabarGcTV00sYyMEbRTliU,311
|
|
304
305
|
gr4vy/models/register_digital_wallet_domainop.py,sha256=0uwJN9f1dCRXShn7AmTx8hJDJhBvs8ra45vJk7YBfQw,1941
|
|
305
306
|
gr4vy/models/report.py,sha256=bvKOcerIeIailU3lCG-J7aOute5dLarmQG1wf-gNlD8,4904
|
|
306
307
|
gr4vy/models/reportcreate.py,sha256=uVCaQS6RO-hfxg0QTqsinGUhpOVbIJfHnjAaUADG8h0,3590
|
|
307
|
-
gr4vy/models/reportcreatortype.py,sha256=
|
|
308
|
+
gr4vy/models/reportcreatortype.py,sha256=m-49PmociEZQ_gUHLaeZArwpijWoB1GWO8ns1sfTrXQ,293
|
|
308
309
|
gr4vy/models/reportexecution.py,sha256=OnJuRY-kh8fyGBau12UkcB6qpZ7mdICePwJ4WXPANQY,1794
|
|
309
310
|
gr4vy/models/reportexecutioncontext.py,sha256=UJkKr5SHnfKnjON8ledis1N3U-ru1n2qxDdUW5w1YFc,706
|
|
310
311
|
gr4vy/models/reportexecutions.py,sha256=W7LsMW1YXp9aJrvJQpqZ7EGDvod8E91JoFRZYhaocZk,2203
|
|
311
|
-
gr4vy/models/reportexecutionstatus.py,sha256=
|
|
312
|
+
gr4vy/models/reportexecutionstatus.py,sha256=N4-Q5fM1ywBq6aV76SO_uOapu7btz2j6IUSolgWrESk,360
|
|
312
313
|
gr4vy/models/reportexecutionsummary.py,sha256=UZfLP9AC0yOnpjfm3dIps1lfomRIttpTDkQSVorWaNQ,1681
|
|
313
314
|
gr4vy/models/reportexecutionurl.py,sha256=xk0SGFrEom7YeXB-5N2w72u_ltJnrCHlLCV7sBlzFO4,622
|
|
314
315
|
gr4vy/models/reports.py,sha256=dH6thbDy67qsFR3xPqaEjGvOm2SNV5TvbeUi8VWoA8I,2140
|
|
315
|
-
gr4vy/models/reportschedule.py,sha256=
|
|
316
|
+
gr4vy/models/reportschedule.py,sha256=SHx6WYk1aTx1Qfm6eYGTnJjJVfv_cBpuAa4REyqC8m4,321
|
|
316
317
|
gr4vy/models/reportspec.py,sha256=97G_hLWPYKmdQfIlUKqTlg4oB4gdG_j0xPUHiCj73TU,698
|
|
317
318
|
gr4vy/models/reportspecmodel.py,sha256=UvlyV_hN7_g6Yhe9xH8DNvMzsDNWrLu9LdGmHa0hoUs,370
|
|
318
319
|
gr4vy/models/reportsummary.py,sha256=ozT6IXAw0x24pQRE-shZ_pXNelOdHxjjMVq0ZMwz6Ho,2952
|
|
@@ -336,8 +337,8 @@ gr4vy/models/taxidkind.py,sha256=_Lby2yQAGP5LGJAEzrXNzRS3DW1rtXs6cGCzF2WqOYA,117
|
|
|
336
337
|
gr4vy/models/threedsecuredatav1.py,sha256=1BuF8zZxKbzYB2-J3QsPzgGsnEoyVJXsK6TSAycMTGE,2890
|
|
337
338
|
gr4vy/models/threedsecuredatav2.py,sha256=cUrfMz3otREw-uFHHdBKuatwASOZJezsD_5Rornv38g,3030
|
|
338
339
|
gr4vy/models/threedsecureerror.py,sha256=RleQeIq3efTJp7C_PdBBhX0olLhs2EEFEPFLCPev41o,2046
|
|
339
|
-
gr4vy/models/threedsecuremethod.py,sha256=
|
|
340
|
-
gr4vy/models/threedsecurestatus.py,sha256=
|
|
340
|
+
gr4vy/models/threedsecuremethod.py,sha256=SZYNn4TSu2K_-VE458NaWtNpNZl1Y8WFJFQwMu-FfAs,300
|
|
341
|
+
gr4vy/models/threedsecurestatus.py,sha256=ok7YxtoF76wJY9htTMKVmZqGWwDkVQPdFs3lEoIg9eI,356
|
|
341
342
|
gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
|
|
342
343
|
gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
|
|
343
344
|
gr4vy/models/transaction.py,sha256=vxuPZfKM-IisjtjsBRCRr0pxiOHu0YfgqdLDmpwjshU,22433
|
|
@@ -345,16 +346,16 @@ gr4vy/models/transactionbuyer.py,sha256=7VxBYmR7IBNA082NqCCdwWtOjyK9ut5dPS4M-6rV
|
|
|
345
346
|
gr4vy/models/transactioncancel.py,sha256=OHP0xmmM374aaYXPeV0G2fZn5RRfxbTAzJnNospfCas,3162
|
|
346
347
|
gr4vy/models/transactioncapture.py,sha256=7WD3uoUyDJ1sejtjIb7b5B5BFtpKEi7KkegVtB0DLTg,3174
|
|
347
348
|
gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
|
|
348
|
-
gr4vy/models/transactionconnectionoptions.py,sha256=
|
|
349
|
+
gr4vy/models/transactionconnectionoptions.py,sha256=8bXN4Vkj3yviZzhXjkPoz-rJkFgSYn3kgARJ85yuGh0,18671
|
|
349
350
|
gr4vy/models/transactioncreate.py,sha256=nrS_YJpqNaa-Om-8AnXzSOG_wKNp0TH79umQwE1fXXE,26445
|
|
350
351
|
gr4vy/models/transactionevent.py,sha256=rZm6VX53piqFWSMMP1rLsRqV2rw6_5J7BHrUt4Nfh2M,3871
|
|
351
352
|
gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
|
|
352
353
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
353
|
-
gr4vy/models/transactionintent.py,sha256=
|
|
354
|
-
gr4vy/models/transactionintentoutcome.py,sha256=
|
|
354
|
+
gr4vy/models/transactionintent.py,sha256=RS4C1XxvLSJqHF9iBtyvX5y6kCHOqlcUz7MTQuyMSM8,294
|
|
355
|
+
gr4vy/models/transactionintentoutcome.py,sha256=0-TNOB-W2uMH3keCtiMLwz2ettqYXu6swb10yRpVFiY,319
|
|
355
356
|
gr4vy/models/transactionpaymentmethod.py,sha256=_uZqRH1cLCoyJPU6an26k27DFWMsNyGeG0HQlyybBx0,7424
|
|
356
357
|
gr4vy/models/transactionpaymentservice.py,sha256=kBS56vZtxCtiX37gxpTVlBzIkmUIa-ppJHPpiQRMM-s,1428
|
|
357
|
-
gr4vy/models/transactionpaymentsource.py,sha256=
|
|
358
|
+
gr4vy/models/transactionpaymentsource.py,sha256=OdbWCrAuSIrIf8dwQ4WqlOl6J9Y6EQ3I5Rs-YxfrFxY,437
|
|
358
359
|
gr4vy/models/transactionrefundallcreate.py,sha256=EUachxUB50TDFFKeTzl9OmPatOCwISTKS0mFE83XgwI,1882
|
|
359
360
|
gr4vy/models/transactionrefundcreate.py,sha256=mmK7NsYYFbgPg-0FiJjsHlmGBl_KesQuSdyDg-rgRNE,3052
|
|
360
361
|
gr4vy/models/transactionretriesreportspec.py,sha256=PUnfQb7ILdp1spWV_Fo9XgbTND7oH1RVx31nZO66_40,1004
|
|
@@ -377,13 +378,13 @@ gr4vy/models/update_merchant_accountop.py,sha256=RCaZc4WFEVtAh7077NVvXNC_ygDwJ_J
|
|
|
377
378
|
gr4vy/models/update_payment_serviceop.py,sha256=yppTLp6raugOqtkE91EsyMtmU916A75BVv1pvXWu_R0,1602
|
|
378
379
|
gr4vy/models/update_reportop.py,sha256=SkPch4PoCWA9X24dOMUXRMlPxg8uYc-69couie5t2IE,1768
|
|
379
380
|
gr4vy/models/update_transactionop.py,sha256=lbnuxaZG-Mvy6PUO77xP2j3Rd7lVA2ckB0Slc2Ji8M0,1825
|
|
380
|
-
gr4vy/models/userstatus.py,sha256=
|
|
381
|
+
gr4vy/models/userstatus.py,sha256=bmlF_Mt656z9o2ibhQ5_dohFs6nEKsuAoNdToCe4vE4,303
|
|
381
382
|
gr4vy/models/validationerror.py,sha256=4wRWnXDL-O7GxCdKzmEuWyv-xTywx124gpf65A1OyVc,522
|
|
382
383
|
gr4vy/models/verify_payment_service_credentialsop.py,sha256=IEO3QA3Nn6n-EcfuovKKr5Y-WFJfnU0lxRSvwJ-F7Yc,1623
|
|
383
384
|
gr4vy/models/verifycredentials.py,sha256=M4VoMBhJxmtTf9LXiL_7v3K6y5Gte-H3YGGpkIqB_n8,2278
|
|
384
385
|
gr4vy/models/void_transactionop.py,sha256=w9b7eWXsFC_auWkQjKDo348Y8RvZEu-yoEXqWRHyUys,3309
|
|
385
386
|
gr4vy/models/voidablefield.py,sha256=uApDDXV7oryN_PtHh1YH7dhBpFtPF4t5UqYzO4Hf1Sk,316
|
|
386
|
-
gr4vy/models/voidstatus.py,sha256=
|
|
387
|
+
gr4vy/models/voidstatus.py,sha256=d1Xfuz1p1H3zCg11TWn-SPHxtULvy8HjmSKbGIHGW78,325
|
|
387
388
|
gr4vy/models/walletpaymentoptioncontext.py,sha256=aQfoRvTnYyNzpJfgpXvkoPbpUZGGEHg0ERjQq3udmCk,422
|
|
388
389
|
gr4vy/models/wpayeverdaypayoptions.py,sha256=-Cvrii9HVTtkV0r52a-EselUP7IaLFmjehj_uJRpI0s,3144
|
|
389
390
|
gr4vy/models/wpaypaytooptions.py,sha256=gyG3U5Ianv_xAzHKJNu7BY1jina9FBfU5Y7T64Au0dc,2304
|
|
@@ -428,6 +429,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
|
|
|
428
429
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
429
430
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
430
431
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
431
|
-
gr4vy-1.2.
|
|
432
|
-
gr4vy-1.2.
|
|
433
|
-
gr4vy-1.2.
|
|
432
|
+
gr4vy-1.2.11.dist-info/METADATA,sha256=nPLvwHdBxy1HIMGApggpU5IxOKKnk0eWGijPYXZJpks,44203
|
|
433
|
+
gr4vy-1.2.11.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
434
|
+
gr4vy-1.2.11.dist-info/RECORD,,
|