gr4vy 1.2.11__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 +2 -2
- gr4vy/models/merchantprofilescheme.py +7 -7
- gr4vy/models/merchantprofileschemesummary.py +7 -7
- {gr4vy-1.2.11.dist-info → gr4vy-1.2.12.dist-info}/METADATA +1 -1
- {gr4vy-1.2.11.dist-info → gr4vy-1.2.12.dist-info}/RECORD +6 -6
- {gr4vy-1.2.11.dist-info → gr4vy-1.2.12.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.2.
|
|
6
|
+
__version__: str = "1.2.12"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
8
|
__gen_version__: str = "2.709.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.2.
|
|
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:
|
|
@@ -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."""
|
|
@@ -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
|
|
@@ -241,8 +241,8 @@ 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
|
|
@@ -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,,
|
|
File without changes
|