gr4vy 1.2.10__py3-none-any.whl → 1.2.12__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/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/merchantprofilescheme.py +7 -7
- gr4vy/models/merchantprofileschemesummary.py +7 -7
- gr4vy/models/networktokenpaymentmethodcreate.py +7 -1
- gr4vy/models/networktokenstatus.py +7 -1
- 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/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.10.dist-info → gr4vy-1.2.12.dist-info}/METADATA +1 -1
- {gr4vy-1.2.10.dist-info → gr4vy-1.2.12.dist-info}/RECORD +49 -49
- {gr4vy-1.2.10.dist-info → gr4vy-1.2.12.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.12"
|
|
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.12 2.709.0 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -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
|
|
|
@@ -8,31 +8,31 @@ from typing_extensions import TypedDict
|
|
|
8
8
|
class MerchantProfileSchemeTypedDict(TypedDict):
|
|
9
9
|
merchant_acquirer_bin: str
|
|
10
10
|
r"""Acquirer BIN to use when calling 3DS through this scheme."""
|
|
11
|
-
merchant_url: str
|
|
12
|
-
r"""URL to send when calling 3DS through this scheme."""
|
|
13
11
|
merchant_acquirer_id: str
|
|
14
12
|
r"""Merchant ID to use when calling 3DS through this scheme."""
|
|
15
13
|
merchant_name: str
|
|
16
14
|
merchant_country_code: str
|
|
17
|
-
r"""
|
|
15
|
+
r"""The merchant's ISO 3166-1 numeric country code."""
|
|
18
16
|
merchant_category_code: str
|
|
19
17
|
r"""Merchant category code to use when calling 3DS through this scheme."""
|
|
18
|
+
merchant_url: str
|
|
19
|
+
r"""URL to send when calling 3DS through this scheme."""
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
class MerchantProfileScheme(BaseModel):
|
|
23
23
|
merchant_acquirer_bin: str
|
|
24
24
|
r"""Acquirer BIN to use when calling 3DS through this scheme."""
|
|
25
25
|
|
|
26
|
-
merchant_url: str
|
|
27
|
-
r"""URL to send when calling 3DS through this scheme."""
|
|
28
|
-
|
|
29
26
|
merchant_acquirer_id: str
|
|
30
27
|
r"""Merchant ID to use when calling 3DS through this scheme."""
|
|
31
28
|
|
|
32
29
|
merchant_name: str
|
|
33
30
|
|
|
34
31
|
merchant_country_code: str
|
|
35
|
-
r"""
|
|
32
|
+
r"""The merchant's ISO 3166-1 numeric country code."""
|
|
36
33
|
|
|
37
34
|
merchant_category_code: str
|
|
38
35
|
r"""Merchant category code to use when calling 3DS through this scheme."""
|
|
36
|
+
|
|
37
|
+
merchant_url: str
|
|
38
|
+
r"""URL to send when calling 3DS through this scheme."""
|
|
@@ -9,15 +9,15 @@ from typing_extensions import TypedDict
|
|
|
9
9
|
class MerchantProfileSchemeSummaryTypedDict(TypedDict):
|
|
10
10
|
merchant_acquirer_bin: str
|
|
11
11
|
r"""Acquirer BIN to use when calling 3DS through this scheme."""
|
|
12
|
-
merchant_url: str
|
|
13
|
-
r"""URL to send when calling 3DS through this scheme."""
|
|
14
12
|
merchant_acquirer_id: str
|
|
15
13
|
r"""Merchant ID to use when calling 3DS through this scheme."""
|
|
16
14
|
merchant_name: str
|
|
17
15
|
merchant_country_code: str
|
|
18
|
-
r"""
|
|
16
|
+
r"""The merchant's ISO 3166-1 numeric country code."""
|
|
19
17
|
merchant_category_code: str
|
|
20
18
|
r"""Merchant category code to use when calling 3DS through this scheme."""
|
|
19
|
+
merchant_url: str
|
|
20
|
+
r"""URL to send when calling 3DS through this scheme."""
|
|
21
21
|
created_at: datetime
|
|
22
22
|
r"""The date and time when this profile was first created in our system."""
|
|
23
23
|
|
|
@@ -26,19 +26,19 @@ class MerchantProfileSchemeSummary(BaseModel):
|
|
|
26
26
|
merchant_acquirer_bin: str
|
|
27
27
|
r"""Acquirer BIN to use when calling 3DS through this scheme."""
|
|
28
28
|
|
|
29
|
-
merchant_url: str
|
|
30
|
-
r"""URL to send when calling 3DS through this scheme."""
|
|
31
|
-
|
|
32
29
|
merchant_acquirer_id: str
|
|
33
30
|
r"""Merchant ID to use when calling 3DS through this scheme."""
|
|
34
31
|
|
|
35
32
|
merchant_name: str
|
|
36
33
|
|
|
37
34
|
merchant_country_code: str
|
|
38
|
-
r"""
|
|
35
|
+
r"""The merchant's ISO 3166-1 numeric country code."""
|
|
39
36
|
|
|
40
37
|
merchant_category_code: str
|
|
41
38
|
r"""Merchant category code to use when calling 3DS through this scheme."""
|
|
42
39
|
|
|
40
|
+
merchant_url: str
|
|
41
|
+
r"""URL to send when calling 3DS through this scheme."""
|
|
42
|
+
|
|
43
43
|
created_at: datetime
|
|
44
44
|
r"""The date and time when this profile was first created in our system."""
|
|
@@ -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):
|
|
@@ -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
|
]
|
|
@@ -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=L14XdcBIAu716bMK1zXWaHO_rV9zU8mSeIOPd8n51KY,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
|
|
@@ -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
|
|
@@ -241,30 +241,30 @@ gr4vy/models/merchantaccount.py,sha256=fBsLDcgStLJpTqTqm8-39Jwohp7tfpC9az1yfybjp
|
|
|
241
241
|
gr4vy/models/merchantaccountcreate.py,sha256=GebggG-UD4Y_WHOArZ9FoogOMFn-W2SNdR43S9r-cj8,13234
|
|
242
242
|
gr4vy/models/merchantaccounts.py,sha256=fjYB6sA9GmjfV67nF9PcI-4I9iBgFsGujoK4PO3TGPY,2203
|
|
243
243
|
gr4vy/models/merchantaccountupdate.py,sha256=b0i1z4ejWH-cLZ6pDW2fDrvCFyzWibYNq0BidY8-R9s,13226
|
|
244
|
-
gr4vy/models/merchantprofilescheme.py,sha256=
|
|
245
|
-
gr4vy/models/merchantprofileschemesummary.py,sha256=
|
|
244
|
+
gr4vy/models/merchantprofilescheme.py,sha256=i-GzhBS2vLfCBi7Hk2xOTBKIOtJPzHoPy3gNtP3JINs,1290
|
|
245
|
+
gr4vy/models/merchantprofileschemesummary.py,sha256=c1wKpp7H37zld2YxA7OPjNWu7KZHtohu3b7GvwuJyls,1545
|
|
246
246
|
gr4vy/models/method.py,sha256=oOfRA8yoNFB4t3hk_zdIrENIRP_rQEIXLsDwv7Nf3zY,2254
|
|
247
247
|
gr4vy/models/mockcardmerchantadvicecodeoptions.py,sha256=iV3cPCx-BvQDqyUGp1LivqPDXUbEYDzzJ1lgChMYPMI,1759
|
|
248
248
|
gr4vy/models/mockcardoptions.py,sha256=6RLlkJrLU42bwd7u-8uonYSlQbwXYGytQk64wypM48o,1743
|
|
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
257
|
gr4vy/models/nuveipseoptions.py,sha256=0CtBMe2cxU6XToQamYy25jCD0rMAl2Ko2KETtNyta1Q,2426
|
|
258
258
|
gr4vy/models/oxxooptions.py,sha256=UjdEwwdwr-N7b8_3gwE1rgxjmfadQRghk9vzZmS4uPU,1910
|
|
259
259
|
gr4vy/models/paymentlink.py,sha256=8fg_b72DMH3V3c3mhvVW7sy4HmEuUgce11wp3Hmnhfo,8050
|
|
260
|
-
gr4vy/models/paymentlinkcreate.py,sha256=
|
|
260
|
+
gr4vy/models/paymentlinkcreate.py,sha256=8YYF6nr5sQauft4gy-Hcfcq-ADNpTzOjnS9zPs8Bww8,7427
|
|
261
261
|
gr4vy/models/paymentlinks.py,sha256=i7Sj7x18rY5HR-E_LkinvTpVjnl8aCMCldQJFXnV9Lk,2175
|
|
262
|
-
gr4vy/models/paymentlinkstatus.py,sha256=
|
|
262
|
+
gr4vy/models/paymentlinkstatus.py,sha256=e09HkfXNZDZSN_lkHCyiW7IaI-8JtM-_UmSOQ_im7ZE,334
|
|
263
263
|
gr4vy/models/paymentmethod.py,sha256=0JMRPQjRTz78EYHL1cUmAGeKOjLLMyHEw9-d2Cj_kCo,9416
|
|
264
264
|
gr4vy/models/paymentmethodcard.py,sha256=-ORChz62-Lucg7YQbul29laVDsxflDJjIhHSXUru9mA,2727
|
|
265
265
|
gr4vy/models/paymentmethoddetailscard.py,sha256=FH5LZkKpXm-GMJ6tLH4-WMEtW6syYOFi49JyyKq0BNM,1837
|
|
266
266
|
gr4vy/models/paymentmethods.py,sha256=KYpooSk-VfLJYror_5N7Y8CECdK3VOBRS20sJQMZucc,2189
|
|
267
|
-
gr4vy/models/paymentmethodstatus.py,sha256=
|
|
267
|
+
gr4vy/models/paymentmethodstatus.py,sha256=yLhYIXrB7m2i8_NNx6uX-mN2VQN_3eIEHVqKxclw0pU,370
|
|
268
268
|
gr4vy/models/paymentmethodstoredcard.py,sha256=-eJedn0lPGka3ChipisusyadKcF_vaUYtOJIVfnKJAo,829
|
|
269
269
|
gr4vy/models/paymentmethodsummaries.py,sha256=IFAC3w_TIQJbIyebLaotn91QzGyeuyWwAWKgBTzaZ9Q,580
|
|
270
270
|
gr4vy/models/paymentmethodsummary.py,sha256=pNYYUbuvjn-d4T5Quuf0o3lWVnrmctkxoKOEQXuX6AA,8104
|
|
@@ -279,18 +279,18 @@ gr4vy/models/paymentservicecreate.py,sha256=OTOwuJmTD5wavfDcIdNQS-LY5xiJORDuk6eM
|
|
|
279
279
|
gr4vy/models/paymentservicedefinition.py,sha256=kiqXkni1gnX58AQe9x61U9B-O7xmRBsn7im17dEo4Fg,4728
|
|
280
280
|
gr4vy/models/paymentservicedefinitions.py,sha256=S_TgLdNAolpMAS9RjTc2bDQO__gxi9LhvUe6CzWNsaE,2279
|
|
281
281
|
gr4vy/models/paymentservices.py,sha256=5bhZVK6sSWBxDD6IhbXlCLIOctd50Gk3xPyGdowJMTw,2196
|
|
282
|
-
gr4vy/models/paymentservicestatus.py,sha256=
|
|
282
|
+
gr4vy/models/paymentservicestatus.py,sha256=tKYRuNd4ix9d5dRfOlRZChHKDkHgGKac-k2IYe3Pa8Y,313
|
|
283
283
|
gr4vy/models/paymentservicetoken.py,sha256=SeGwVo0NKCRAygM0-R2Xy1WTN7ZLrHOa6PeKwL-aUAk,3588
|
|
284
284
|
gr4vy/models/paymentservicetokencreate.py,sha256=VFAX1indCtSLlUdGSMq5SHJcfoCi7t4QQCG6aIVDycY,2014
|
|
285
285
|
gr4vy/models/paymentservicetokens.py,sha256=zRBGaNBKVr0NXZgQ7TZDEJDJbBbJ7sqkgMDqVCddnts,571
|
|
286
286
|
gr4vy/models/paymentserviceupdate.py,sha256=B3GxHUOtiP13Fblgrb3GdPHQDaEG2EbZYlKwTZ39-xg,6271
|
|
287
|
-
gr4vy/models/payoutcategory.py,sha256=
|
|
287
|
+
gr4vy/models/payoutcategory.py,sha256=j5n2IQexJJCkWRnRoZfoZ9JNddYB84KelMmD2JpY4Fs,253
|
|
288
288
|
gr4vy/models/payoutconnectionoptions.py,sha256=vtSPfpo_GRIMoyf0WN1NaTa14cfJT4MFrEsvYaSDyT4,1749
|
|
289
289
|
gr4vy/models/payoutcreate.py,sha256=JENoavwLN_hDZUh3ud4CWwxak8ycim8TtWFAItQDs1E,5937
|
|
290
290
|
gr4vy/models/payoutmerchant.py,sha256=iY98n8DiVPY1a5hmzO9BOVFRKTq4cgMZg5N7RkxLhf4,2656
|
|
291
291
|
gr4vy/models/payoutmerchantsummary.py,sha256=BZFrzFYEQwZ5cAsUK_YbTvFZGgAc0oTcvzaXGiBf31w,3381
|
|
292
292
|
gr4vy/models/payoutpaymentservice.py,sha256=hdY8gf6uG9GHxBKve9OatNiRoKSCsoDClGlvJua0Zkg,2653
|
|
293
|
-
gr4vy/models/payoutstatus.py,sha256=
|
|
293
|
+
gr4vy/models/payoutstatus.py,sha256=noJUkRfZ4ShNUbU9Lo1c8x5UzPVy3bselJ3-fcN_yKM,327
|
|
294
294
|
gr4vy/models/payoutsummaries.py,sha256=n9rCKfAKn77Cyvy8WCfkKtCTI-wDxSJNraJBqT_RnV8,2191
|
|
295
295
|
gr4vy/models/payoutsummary.py,sha256=qnx3ShxDXmkKk8LXgGDtVatyxPqPjXneYarXGK_AiOQ,5435
|
|
296
296
|
gr4vy/models/paypaloptions.py,sha256=NIFg4LSHHC0V0SOFvJ6Q5ya3WtzFLeqNKYNt2mIK9oQ,1666
|
|
@@ -300,20 +300,20 @@ gr4vy/models/recipient.py,sha256=ORw0V4wDt3ytidIDj0Dmut92naYoRkMznh0LKuK17Rs,256
|
|
|
300
300
|
gr4vy/models/redirectpaymentmethodcreate.py,sha256=VRATGeLvAUcpvmvb2v6JiWe9xAcOnd1l8Tsf_bPvvUo,5837
|
|
301
301
|
gr4vy/models/refund.py,sha256=6yBk44ZwtM44wqaSCLHfVLJfeOt8OXMy9G9n8GA2FC4,7696
|
|
302
302
|
gr4vy/models/refunds.py,sha256=CdTbSo1PQSsS8U1atlwOYnFS-po7u_KA1lA3XpPsqfI,2140
|
|
303
|
-
gr4vy/models/refundstatus.py,sha256=
|
|
304
|
-
gr4vy/models/refundtargettype.py,sha256=
|
|
303
|
+
gr4vy/models/refundstatus.py,sha256=IRfLXRsVgJO8rhPRPJFdVrm1k-VIDOdQGyeHpk7ht3k,348
|
|
304
|
+
gr4vy/models/refundtargettype.py,sha256=zJl8wcVypVgm8OktzKgaTMabarGcTV00sYyMEbRTliU,311
|
|
305
305
|
gr4vy/models/register_digital_wallet_domainop.py,sha256=0uwJN9f1dCRXShn7AmTx8hJDJhBvs8ra45vJk7YBfQw,1941
|
|
306
306
|
gr4vy/models/report.py,sha256=bvKOcerIeIailU3lCG-J7aOute5dLarmQG1wf-gNlD8,4904
|
|
307
307
|
gr4vy/models/reportcreate.py,sha256=uVCaQS6RO-hfxg0QTqsinGUhpOVbIJfHnjAaUADG8h0,3590
|
|
308
|
-
gr4vy/models/reportcreatortype.py,sha256=
|
|
308
|
+
gr4vy/models/reportcreatortype.py,sha256=m-49PmociEZQ_gUHLaeZArwpijWoB1GWO8ns1sfTrXQ,293
|
|
309
309
|
gr4vy/models/reportexecution.py,sha256=OnJuRY-kh8fyGBau12UkcB6qpZ7mdICePwJ4WXPANQY,1794
|
|
310
310
|
gr4vy/models/reportexecutioncontext.py,sha256=UJkKr5SHnfKnjON8ledis1N3U-ru1n2qxDdUW5w1YFc,706
|
|
311
311
|
gr4vy/models/reportexecutions.py,sha256=W7LsMW1YXp9aJrvJQpqZ7EGDvod8E91JoFRZYhaocZk,2203
|
|
312
|
-
gr4vy/models/reportexecutionstatus.py,sha256=
|
|
312
|
+
gr4vy/models/reportexecutionstatus.py,sha256=N4-Q5fM1ywBq6aV76SO_uOapu7btz2j6IUSolgWrESk,360
|
|
313
313
|
gr4vy/models/reportexecutionsummary.py,sha256=UZfLP9AC0yOnpjfm3dIps1lfomRIttpTDkQSVorWaNQ,1681
|
|
314
314
|
gr4vy/models/reportexecutionurl.py,sha256=xk0SGFrEom7YeXB-5N2w72u_ltJnrCHlLCV7sBlzFO4,622
|
|
315
315
|
gr4vy/models/reports.py,sha256=dH6thbDy67qsFR3xPqaEjGvOm2SNV5TvbeUi8VWoA8I,2140
|
|
316
|
-
gr4vy/models/reportschedule.py,sha256=
|
|
316
|
+
gr4vy/models/reportschedule.py,sha256=SHx6WYk1aTx1Qfm6eYGTnJjJVfv_cBpuAa4REyqC8m4,321
|
|
317
317
|
gr4vy/models/reportspec.py,sha256=97G_hLWPYKmdQfIlUKqTlg4oB4gdG_j0xPUHiCj73TU,698
|
|
318
318
|
gr4vy/models/reportspecmodel.py,sha256=UvlyV_hN7_g6Yhe9xH8DNvMzsDNWrLu9LdGmHa0hoUs,370
|
|
319
319
|
gr4vy/models/reportsummary.py,sha256=ozT6IXAw0x24pQRE-shZ_pXNelOdHxjjMVq0ZMwz6Ho,2952
|
|
@@ -337,8 +337,8 @@ gr4vy/models/taxidkind.py,sha256=_Lby2yQAGP5LGJAEzrXNzRS3DW1rtXs6cGCzF2WqOYA,117
|
|
|
337
337
|
gr4vy/models/threedsecuredatav1.py,sha256=1BuF8zZxKbzYB2-J3QsPzgGsnEoyVJXsK6TSAycMTGE,2890
|
|
338
338
|
gr4vy/models/threedsecuredatav2.py,sha256=cUrfMz3otREw-uFHHdBKuatwASOZJezsD_5Rornv38g,3030
|
|
339
339
|
gr4vy/models/threedsecureerror.py,sha256=RleQeIq3efTJp7C_PdBBhX0olLhs2EEFEPFLCPev41o,2046
|
|
340
|
-
gr4vy/models/threedsecuremethod.py,sha256=
|
|
341
|
-
gr4vy/models/threedsecurestatus.py,sha256=
|
|
340
|
+
gr4vy/models/threedsecuremethod.py,sha256=SZYNn4TSu2K_-VE458NaWtNpNZl1Y8WFJFQwMu-FfAs,300
|
|
341
|
+
gr4vy/models/threedsecurestatus.py,sha256=ok7YxtoF76wJY9htTMKVmZqGWwDkVQPdFs3lEoIg9eI,356
|
|
342
342
|
gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
|
|
343
343
|
gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
|
|
344
344
|
gr4vy/models/transaction.py,sha256=vxuPZfKM-IisjtjsBRCRr0pxiOHu0YfgqdLDmpwjshU,22433
|
|
@@ -351,11 +351,11 @@ gr4vy/models/transactioncreate.py,sha256=nrS_YJpqNaa-Om-8AnXzSOG_wKNp0TH79umQwE1
|
|
|
351
351
|
gr4vy/models/transactionevent.py,sha256=rZm6VX53piqFWSMMP1rLsRqV2rw6_5J7BHrUt4Nfh2M,3871
|
|
352
352
|
gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
|
|
353
353
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
354
|
-
gr4vy/models/transactionintent.py,sha256=
|
|
355
|
-
gr4vy/models/transactionintentoutcome.py,sha256=
|
|
354
|
+
gr4vy/models/transactionintent.py,sha256=RS4C1XxvLSJqHF9iBtyvX5y6kCHOqlcUz7MTQuyMSM8,294
|
|
355
|
+
gr4vy/models/transactionintentoutcome.py,sha256=0-TNOB-W2uMH3keCtiMLwz2ettqYXu6swb10yRpVFiY,319
|
|
356
356
|
gr4vy/models/transactionpaymentmethod.py,sha256=_uZqRH1cLCoyJPU6an26k27DFWMsNyGeG0HQlyybBx0,7424
|
|
357
357
|
gr4vy/models/transactionpaymentservice.py,sha256=kBS56vZtxCtiX37gxpTVlBzIkmUIa-ppJHPpiQRMM-s,1428
|
|
358
|
-
gr4vy/models/transactionpaymentsource.py,sha256=
|
|
358
|
+
gr4vy/models/transactionpaymentsource.py,sha256=OdbWCrAuSIrIf8dwQ4WqlOl6J9Y6EQ3I5Rs-YxfrFxY,437
|
|
359
359
|
gr4vy/models/transactionrefundallcreate.py,sha256=EUachxUB50TDFFKeTzl9OmPatOCwISTKS0mFE83XgwI,1882
|
|
360
360
|
gr4vy/models/transactionrefundcreate.py,sha256=mmK7NsYYFbgPg-0FiJjsHlmGBl_KesQuSdyDg-rgRNE,3052
|
|
361
361
|
gr4vy/models/transactionretriesreportspec.py,sha256=PUnfQb7ILdp1spWV_Fo9XgbTND7oH1RVx31nZO66_40,1004
|
|
@@ -378,13 +378,13 @@ gr4vy/models/update_merchant_accountop.py,sha256=RCaZc4WFEVtAh7077NVvXNC_ygDwJ_J
|
|
|
378
378
|
gr4vy/models/update_payment_serviceop.py,sha256=yppTLp6raugOqtkE91EsyMtmU916A75BVv1pvXWu_R0,1602
|
|
379
379
|
gr4vy/models/update_reportop.py,sha256=SkPch4PoCWA9X24dOMUXRMlPxg8uYc-69couie5t2IE,1768
|
|
380
380
|
gr4vy/models/update_transactionop.py,sha256=lbnuxaZG-Mvy6PUO77xP2j3Rd7lVA2ckB0Slc2Ji8M0,1825
|
|
381
|
-
gr4vy/models/userstatus.py,sha256=
|
|
381
|
+
gr4vy/models/userstatus.py,sha256=bmlF_Mt656z9o2ibhQ5_dohFs6nEKsuAoNdToCe4vE4,303
|
|
382
382
|
gr4vy/models/validationerror.py,sha256=4wRWnXDL-O7GxCdKzmEuWyv-xTywx124gpf65A1OyVc,522
|
|
383
383
|
gr4vy/models/verify_payment_service_credentialsop.py,sha256=IEO3QA3Nn6n-EcfuovKKr5Y-WFJfnU0lxRSvwJ-F7Yc,1623
|
|
384
384
|
gr4vy/models/verifycredentials.py,sha256=M4VoMBhJxmtTf9LXiL_7v3K6y5Gte-H3YGGpkIqB_n8,2278
|
|
385
385
|
gr4vy/models/void_transactionop.py,sha256=w9b7eWXsFC_auWkQjKDo348Y8RvZEu-yoEXqWRHyUys,3309
|
|
386
386
|
gr4vy/models/voidablefield.py,sha256=uApDDXV7oryN_PtHh1YH7dhBpFtPF4t5UqYzO4Hf1Sk,316
|
|
387
|
-
gr4vy/models/voidstatus.py,sha256=
|
|
387
|
+
gr4vy/models/voidstatus.py,sha256=d1Xfuz1p1H3zCg11TWn-SPHxtULvy8HjmSKbGIHGW78,325
|
|
388
388
|
gr4vy/models/walletpaymentoptioncontext.py,sha256=aQfoRvTnYyNzpJfgpXvkoPbpUZGGEHg0ERjQq3udmCk,422
|
|
389
389
|
gr4vy/models/wpayeverdaypayoptions.py,sha256=-Cvrii9HVTtkV0r52a-EselUP7IaLFmjehj_uJRpI0s,3144
|
|
390
390
|
gr4vy/models/wpaypaytooptions.py,sha256=gyG3U5Ianv_xAzHKJNu7BY1jina9FBfU5Y7T64Au0dc,2304
|
|
@@ -429,6 +429,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
|
|
|
429
429
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
430
430
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
431
431
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
432
|
-
gr4vy-1.2.
|
|
433
|
-
gr4vy-1.2.
|
|
434
|
-
gr4vy-1.2.
|
|
432
|
+
gr4vy-1.2.12.dist-info/METADATA,sha256=jwY833aOx_A38Qj41Nk99p6MZl2tkpT45xN2moqe830,44203
|
|
433
|
+
gr4vy-1.2.12.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
434
|
+
gr4vy-1.2.12.dist-info/RECORD,,
|