gr4vy 1.1.32__py3-none-any.whl → 1.1.34__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gr4vy/_version.py +2 -2
- gr4vy/models/__init__.py +5 -0
- gr4vy/models/adyencardoptions.py +8 -0
- gr4vy/models/adyensplitsoptions.py +57 -0
- gr4vy/models/method.py +1 -0
- gr4vy/models/redirectpaymentmethodcreate.py +1 -0
- gr4vy/models/transaction.py +7 -0
- gr4vy/models/transactionevent.py +2 -0
- {gr4vy-1.1.32.dist-info → gr4vy-1.1.34.dist-info}/METADATA +1 -1
- {gr4vy-1.1.32.dist-info → gr4vy-1.1.34.dist-info}/RECORD +11 -10
- {gr4vy-1.1.32.dist-info → gr4vy-1.1.34.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.1.
|
|
6
|
+
__version__: str = "1.1.34"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
8
|
__gen_version__: str = "2.686.7"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.1.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.1.34 2.686.7 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
gr4vy/models/__init__.py
CHANGED
|
@@ -52,6 +52,7 @@ if TYPE_CHECKING:
|
|
|
52
52
|
from .adyencardoptions import AdyenCardOptions, AdyenCardOptionsTypedDict
|
|
53
53
|
from .adyenoptions import AdyenOptions, AdyenOptionsTypedDict
|
|
54
54
|
from .adyensepaoptions import AdyenSepaOptions, AdyenSepaOptionsTypedDict
|
|
55
|
+
from .adyensplitsoptions import AdyenSplitsOptions, AdyenSplitsOptionsTypedDict
|
|
55
56
|
from .affirmitineraryoptions import (
|
|
56
57
|
AffirmItineraryOptions,
|
|
57
58
|
AffirmItineraryOptionsTypedDict,
|
|
@@ -1172,6 +1173,8 @@ __all__ = [
|
|
|
1172
1173
|
"AdyenOptionsTypedDict",
|
|
1173
1174
|
"AdyenSepaOptions",
|
|
1174
1175
|
"AdyenSepaOptionsTypedDict",
|
|
1176
|
+
"AdyenSplitsOptions",
|
|
1177
|
+
"AdyenSplitsOptionsTypedDict",
|
|
1175
1178
|
"AffirmItineraryOptions",
|
|
1176
1179
|
"AffirmItineraryOptionsTypedDict",
|
|
1177
1180
|
"AffirmOptions",
|
|
@@ -2052,6 +2055,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2052
2055
|
"AdyenOptionsTypedDict": ".adyenoptions",
|
|
2053
2056
|
"AdyenSepaOptions": ".adyensepaoptions",
|
|
2054
2057
|
"AdyenSepaOptionsTypedDict": ".adyensepaoptions",
|
|
2058
|
+
"AdyenSplitsOptions": ".adyensplitsoptions",
|
|
2059
|
+
"AdyenSplitsOptionsTypedDict": ".adyensplitsoptions",
|
|
2055
2060
|
"AffirmItineraryOptions": ".affirmitineraryoptions",
|
|
2056
2061
|
"AffirmItineraryOptionsTypedDict": ".affirmitineraryoptions",
|
|
2057
2062
|
"AffirmOptions": ".affirmoptions",
|
gr4vy/models/adyencardoptions.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from .adyencardautorescuescenariosenum import AdyenCardAutoRescueScenariosEnum
|
|
5
|
+
from .adyensplitsoptions import AdyenSplitsOptions, AdyenSplitsOptionsTypedDict
|
|
5
6
|
from gr4vy.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
6
7
|
from gr4vy.utils import validate_open_enum
|
|
7
8
|
import pydantic
|
|
@@ -22,6 +23,8 @@ class AdyenCardOptionsTypedDict(TypedDict):
|
|
|
22
23
|
r"""The rescue scenario to simulate for a transaction, when `autoRescue` is set to `true`."""
|
|
23
24
|
window_origin: NotRequired[Nullable[str]]
|
|
24
25
|
r"""The origin of the window where the payment is initiated, used for 3D Secure authentication."""
|
|
26
|
+
splits: NotRequired[Nullable[AdyenSplitsOptionsTypedDict]]
|
|
27
|
+
r"""Passes information of splitting payment amounts to the Adyen API."""
|
|
25
28
|
|
|
26
29
|
|
|
27
30
|
class AdyenCardOptions(BaseModel):
|
|
@@ -52,6 +55,9 @@ class AdyenCardOptions(BaseModel):
|
|
|
52
55
|
window_origin: OptionalNullable[str] = UNSET
|
|
53
56
|
r"""The origin of the window where the payment is initiated, used for 3D Secure authentication."""
|
|
54
57
|
|
|
58
|
+
splits: OptionalNullable[AdyenSplitsOptions] = UNSET
|
|
59
|
+
r"""Passes information of splitting payment amounts to the Adyen API."""
|
|
60
|
+
|
|
55
61
|
@model_serializer(mode="wrap")
|
|
56
62
|
def serialize_model(self, handler):
|
|
57
63
|
optional_fields = [
|
|
@@ -60,6 +66,7 @@ class AdyenCardOptions(BaseModel):
|
|
|
60
66
|
"additionalData",
|
|
61
67
|
"autoRescueScenario",
|
|
62
68
|
"window_origin",
|
|
69
|
+
"splits",
|
|
63
70
|
]
|
|
64
71
|
nullable_fields = [
|
|
65
72
|
"autoRescue",
|
|
@@ -67,6 +74,7 @@ class AdyenCardOptions(BaseModel):
|
|
|
67
74
|
"additionalData",
|
|
68
75
|
"autoRescueScenario",
|
|
69
76
|
"window_origin",
|
|
77
|
+
"splits",
|
|
70
78
|
]
|
|
71
79
|
null_default_fields = []
|
|
72
80
|
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from gr4vy.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from typing import Any, Dict, List
|
|
7
|
+
from typing_extensions import NotRequired, TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class AdyenSplitsOptionsTypedDict(TypedDict):
|
|
11
|
+
authorization: NotRequired[Nullable[List[Dict[str, Any]]]]
|
|
12
|
+
r"""Split payment values to pass to the Adyen API on payment authorization. See [the Adyen docs](https://docs.adyen.com/platforms/online-payments/split-transactions/split-payments-at-authorization/) for details on the format and contents of the list."""
|
|
13
|
+
capture: NotRequired[Nullable[List[Dict[str, Any]]]]
|
|
14
|
+
r"""Split payment values to pass to the Adyen API on payment capture. See [the Adyen docs](https://docs.adyen.com/platforms/online-payments/split-transactions/split-payments-at-capture/) for details on the format and contents of the list."""
|
|
15
|
+
refund: NotRequired[Nullable[List[Dict[str, Any]]]]
|
|
16
|
+
r"""Split payment values to pass to the Adyen API on payment refund. See [the Adyen docs](https://docs.adyen.com/platforms/online-payments/split-transactions/split-refunds/) for details on the format and contents of the list."""
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class AdyenSplitsOptions(BaseModel):
|
|
20
|
+
authorization: OptionalNullable[List[Dict[str, Any]]] = UNSET
|
|
21
|
+
r"""Split payment values to pass to the Adyen API on payment authorization. See [the Adyen docs](https://docs.adyen.com/platforms/online-payments/split-transactions/split-payments-at-authorization/) for details on the format and contents of the list."""
|
|
22
|
+
|
|
23
|
+
capture: OptionalNullable[List[Dict[str, Any]]] = UNSET
|
|
24
|
+
r"""Split payment values to pass to the Adyen API on payment capture. See [the Adyen docs](https://docs.adyen.com/platforms/online-payments/split-transactions/split-payments-at-capture/) for details on the format and contents of the list."""
|
|
25
|
+
|
|
26
|
+
refund: OptionalNullable[List[Dict[str, Any]]] = UNSET
|
|
27
|
+
r"""Split payment values to pass to the Adyen API on payment refund. See [the Adyen docs](https://docs.adyen.com/platforms/online-payments/split-transactions/split-refunds/) for details on the format and contents of the list."""
|
|
28
|
+
|
|
29
|
+
@model_serializer(mode="wrap")
|
|
30
|
+
def serialize_model(self, handler):
|
|
31
|
+
optional_fields = ["authorization", "capture", "refund"]
|
|
32
|
+
nullable_fields = ["authorization", "capture", "refund"]
|
|
33
|
+
null_default_fields = []
|
|
34
|
+
|
|
35
|
+
serialized = handler(self)
|
|
36
|
+
|
|
37
|
+
m = {}
|
|
38
|
+
|
|
39
|
+
for n, f in type(self).model_fields.items():
|
|
40
|
+
k = f.alias or n
|
|
41
|
+
val = serialized.get(k)
|
|
42
|
+
serialized.pop(k, None)
|
|
43
|
+
|
|
44
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
45
|
+
is_set = (
|
|
46
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
47
|
+
or k in null_default_fields
|
|
48
|
+
) # pylint: disable=no-member
|
|
49
|
+
|
|
50
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
51
|
+
m[k] = val
|
|
52
|
+
elif val != UNSET_SENTINEL and (
|
|
53
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
54
|
+
):
|
|
55
|
+
m[k] = val
|
|
56
|
+
|
|
57
|
+
return m
|
gr4vy/models/method.py
CHANGED
gr4vy/models/transaction.py
CHANGED
|
@@ -144,6 +144,8 @@ class TransactionTypedDict(TypedDict):
|
|
|
144
144
|
r"""The date this transaction was captured at."""
|
|
145
145
|
voided_at: NotRequired[Nullable[datetime]]
|
|
146
146
|
r"""The date this transaction was voided at."""
|
|
147
|
+
canceled_at: NotRequired[Nullable[datetime]]
|
|
148
|
+
r"""The date this transaction was canceled at."""
|
|
147
149
|
approval_expires_at: NotRequired[Nullable[datetime]]
|
|
148
150
|
r"""The date this transaction's approval URL will expire at."""
|
|
149
151
|
buyer_approval_timedout_at: NotRequired[Nullable[datetime]]
|
|
@@ -332,6 +334,9 @@ class Transaction(BaseModel):
|
|
|
332
334
|
voided_at: OptionalNullable[datetime] = UNSET
|
|
333
335
|
r"""The date this transaction was voided at."""
|
|
334
336
|
|
|
337
|
+
canceled_at: OptionalNullable[datetime] = UNSET
|
|
338
|
+
r"""The date this transaction was canceled at."""
|
|
339
|
+
|
|
335
340
|
approval_expires_at: OptionalNullable[datetime] = UNSET
|
|
336
341
|
r"""The date this transaction's approval URL will expire at."""
|
|
337
342
|
|
|
@@ -381,6 +386,7 @@ class Transaction(BaseModel):
|
|
|
381
386
|
"authorized_at",
|
|
382
387
|
"captured_at",
|
|
383
388
|
"voided_at",
|
|
389
|
+
"canceled_at",
|
|
384
390
|
"approval_expires_at",
|
|
385
391
|
"buyer_approval_timedout_at",
|
|
386
392
|
"recipient",
|
|
@@ -416,6 +422,7 @@ class Transaction(BaseModel):
|
|
|
416
422
|
"authorized_at",
|
|
417
423
|
"captured_at",
|
|
418
424
|
"voided_at",
|
|
425
|
+
"canceled_at",
|
|
419
426
|
"approval_expires_at",
|
|
420
427
|
"buyer_approval_timedout_at",
|
|
421
428
|
"recipient",
|
gr4vy/models/transactionevent.py
CHANGED
|
@@ -43,6 +43,8 @@ Name = Union[
|
|
|
43
43
|
"payment-connector-response-transaction-declined",
|
|
44
44
|
"payment-connector-response-transaction-capture-failed",
|
|
45
45
|
"payment-connector-response-transaction-capture-declined",
|
|
46
|
+
"payment-connector-response-transaction-cancel-succeeded",
|
|
47
|
+
"payment-connector-response-transaction-cancel-failed",
|
|
46
48
|
"payment-connector-response-transaction-void-succeeded",
|
|
47
49
|
"payment-connector-response-transaction-void-declined",
|
|
48
50
|
"payment-connector-response-transaction-void-failed",
|
|
@@ -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=I-MgsoYOkOwtGXsnhHq_dOsczPiOQCFdb65q84X6Dfc,454
|
|
6
6
|
gr4vy/account_updater.py,sha256=AIu37O0v3fkWjbcbZJf1MI32lpVnIWynRmd1ys_cSnk,477
|
|
7
7
|
gr4vy/all.py,sha256=WwnLoNn3RgXNpf4Xoz12ct94JD7NMpLz-kzesHHh4m8,15172
|
|
8
8
|
gr4vy/audit_logs.py,sha256=iAT3rnS0NYNKZGw5IVl_MC_RPAHMJNXHfd_K--HIplU,17015
|
|
@@ -40,7 +40,7 @@ gr4vy/gift_cards_sdk.py,sha256=hgGnEm1_4pvLndCFebzr5QmqqbzkTb2vfyNVl2HpRnU,57363
|
|
|
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=TGwGZqyD_b7xR2pggTsOa3H813-zhakhtjS9d_NsfmA,80907
|
|
43
|
-
gr4vy/models/__init__.py,sha256=
|
|
43
|
+
gr4vy/models/__init__.py,sha256=ucD3fIkDEbD-WzVFvkES_uXcZY0SmIXmt7DxjmzJCHY,129878
|
|
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
|
|
@@ -53,9 +53,10 @@ gr4vy/models/add_reportop.py,sha256=EAvk_A8Orkv9GSZ9skQvUMgD_Ggzir4pCKaFFge1rIA,
|
|
|
53
53
|
gr4vy/models/address.py,sha256=jj5MjIw60x5rAnOm-LYAKewXoS1PNjrC4a9tNGU8sUs,3638
|
|
54
54
|
gr4vy/models/adyenautorescuesepascenariosenum.py,sha256=JR1UvcaP5a2DdquQGnvD0418yAU1eT3P73K6NfxZz9U,355
|
|
55
55
|
gr4vy/models/adyencardautorescuescenariosenum.py,sha256=GQFFiTURX0j_cLoFBR5ZXywoEfInuxaouhaSc6HzRCA,399
|
|
56
|
-
gr4vy/models/adyencardoptions.py,sha256=
|
|
56
|
+
gr4vy/models/adyencardoptions.py,sha256=XZDxPjSWqL6AkPz-8KzhpuXUqZAut8RfbbRhwF_DRaY,4383
|
|
57
57
|
gr4vy/models/adyenoptions.py,sha256=zQxOllGQqehFs2r6Ymd-dxTO3fbKUmhQCzTVOZsyLTU,1680
|
|
58
58
|
gr4vy/models/adyensepaoptions.py,sha256=ApfD7jaL_xwRZhJ22FTaVvIoRY3MalRFX02yqFEvCm8,3940
|
|
59
|
+
gr4vy/models/adyensplitsoptions.py,sha256=txRWXyXoXYej0HIWlCsWKJUlXdFy-dqd38dnNeMkgEk,3207
|
|
59
60
|
gr4vy/models/affirmitineraryoptions.py,sha256=8ep1EBIA2YLFf2rFJjgp3_Xy8TX7uXRoo_T8XXjdcGU,2892
|
|
60
61
|
gr4vy/models/affirmoptions.py,sha256=mJ91Dx0jzIXH3O33GVN6yLJWzgOdC3BDoYM84fGdQvM,1927
|
|
61
62
|
gr4vy/models/airline.py,sha256=vztIq7wBg8s1GRERXIwzoJeeoH2ekUwT9b_N0a4EpEo,7881
|
|
@@ -240,7 +241,7 @@ gr4vy/models/merchantaccounts.py,sha256=fjYB6sA9GmjfV67nF9PcI-4I9iBgFsGujoK4PO3T
|
|
|
240
241
|
gr4vy/models/merchantaccountupdate.py,sha256=htMMaZDeTHyBKUv4JQVbu_KuYS6ezwtUXbv49P2hKa8,12774
|
|
241
242
|
gr4vy/models/merchantprofilescheme.py,sha256=1HteYG6DIYW2vOsAKuc-MRDrcPd0hDOHncSS6vzwEBA,1328
|
|
242
243
|
gr4vy/models/merchantprofileschemesummary.py,sha256=n5RpSe8APDVRmI-2a4DwBhPLQD9FD-1_rQZGxJ6oehs,1583
|
|
243
|
-
gr4vy/models/method.py,sha256=
|
|
244
|
+
gr4vy/models/method.py,sha256=oOfRA8yoNFB4t3hk_zdIrENIRP_rQEIXLsDwv7Nf3zY,2254
|
|
244
245
|
gr4vy/models/mockcardmerchantadvicecodeoptions.py,sha256=iV3cPCx-BvQDqyUGp1LivqPDXUbEYDzzJ1lgChMYPMI,1759
|
|
245
246
|
gr4vy/models/mockcardoptions.py,sha256=6RLlkJrLU42bwd7u-8uonYSlQbwXYGytQk64wypM48o,1743
|
|
246
247
|
gr4vy/models/mode.py,sha256=TNSHFVZ2UfdqE7fjJHt88v7dOwdxIZPTBcSkqDxStXE,391
|
|
@@ -293,7 +294,7 @@ gr4vy/models/paypaloptions.py,sha256=NIFg4LSHHC0V0SOFvJ6Q5ya3WtzFLeqNKYNt2mIK9oQ
|
|
|
293
294
|
gr4vy/models/powertranzoptions.py,sha256=ZJAZVTggH_fMMwvMlNvJGe0RpLcASaWBmH5Ln7SgxrU,1692
|
|
294
295
|
gr4vy/models/producttype.py,sha256=qsHybq-2rssJDt3greV0fng-wnHKVaFWGMvf3-52u70,418
|
|
295
296
|
gr4vy/models/recipient.py,sha256=ORw0V4wDt3ytidIDj0Dmut92naYoRkMznh0LKuK17Rs,2568
|
|
296
|
-
gr4vy/models/redirectpaymentmethodcreate.py,sha256=
|
|
297
|
+
gr4vy/models/redirectpaymentmethodcreate.py,sha256=VRATGeLvAUcpvmvb2v6JiWe9xAcOnd1l8Tsf_bPvvUo,5837
|
|
297
298
|
gr4vy/models/refund.py,sha256=6yBk44ZwtM44wqaSCLHfVLJfeOt8OXMy9G9n8GA2FC4,7696
|
|
298
299
|
gr4vy/models/refunds.py,sha256=CdTbSo1PQSsS8U1atlwOYnFS-po7u_KA1lA3XpPsqfI,2140
|
|
299
300
|
gr4vy/models/refundstatus.py,sha256=y_loaDGfWJ419XErBFwZFSvSdV9rFnol6r0cGC1nr18,296
|
|
@@ -337,13 +338,13 @@ gr4vy/models/threedsecuremethod.py,sha256=o4lUm2J1qZl295ZuoJozw5R_PJJBtKr-WW_q-8
|
|
|
337
338
|
gr4vy/models/threedsecurestatus.py,sha256=YYuev33trJ5aIS_VnNHm4N5ZJjumKEWdOCNxsyHdBMs,309
|
|
338
339
|
gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
|
|
339
340
|
gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
|
|
340
|
-
gr4vy/models/transaction.py,sha256=
|
|
341
|
+
gr4vy/models/transaction.py,sha256=fof5VDhoQfUyp23cR0QX2RHtSskU--Bj1sqO0Yxyd5U,22264
|
|
341
342
|
gr4vy/models/transactionbuyer.py,sha256=7VxBYmR7IBNA082NqCCdwWtOjyK9ut5dPS4M-6rVHjE,3074
|
|
342
343
|
gr4vy/models/transactioncapture.py,sha256=7WD3uoUyDJ1sejtjIb7b5B5BFtpKEi7KkegVtB0DLTg,3174
|
|
343
344
|
gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
|
|
344
345
|
gr4vy/models/transactionconnectionoptions.py,sha256=GeXBb1VgGyRJvOxt8Dl0-psTHERjFWM5GBBgcvuBGKI,18231
|
|
345
346
|
gr4vy/models/transactioncreate.py,sha256=eMZkJnfkuv50JzEeI3MzlHKs01PSuYLfxoRu4VV1dgE,24223
|
|
346
|
-
gr4vy/models/transactionevent.py,sha256=
|
|
347
|
+
gr4vy/models/transactionevent.py,sha256=voDvaH47WMfkjeISC8RkR2bD1ralzC7ArNuz4DceSqY,3806
|
|
347
348
|
gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
|
|
348
349
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
349
350
|
gr4vy/models/transactionintent.py,sha256=D_Mfcssx4vzhs2dX_rRdeUWMSb1i6fXmorA_z_g_Aos,260
|
|
@@ -424,6 +425,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
|
|
|
424
425
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
425
426
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
426
427
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
427
|
-
gr4vy-1.1.
|
|
428
|
-
gr4vy-1.1.
|
|
429
|
-
gr4vy-1.1.
|
|
428
|
+
gr4vy-1.1.34.dist-info/METADATA,sha256=nzCr0sCQolVC5aGUhwhvw0K1FZjYjwMpNCOG3f6auLE,44029
|
|
429
|
+
gr4vy-1.1.34.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
430
|
+
gr4vy-1.1.34.dist-info/RECORD,,
|
|
File without changes
|