gr4vy 1.6.3__py3-none-any.whl → 1.6.5__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.

Potentially problematic release.


This version of gr4vy might be problematic. Click here for more details.

Files changed (32) hide show
  1. gr4vy/_version.py +3 -3
  2. gr4vy/models/__init__.py +99 -75
  3. gr4vy/models/auditlogentries.py +3 -3
  4. gr4vy/models/{auditlogentry.py → auditlogentry_output.py} +2 -2
  5. gr4vy/models/capture_transactionop.py +7 -4
  6. gr4vy/models/checkoutsession.py +5 -5
  7. gr4vy/models/{checkoutsessionpaymentmethod.py → checkoutsessionpaymentmethod_output.py} +2 -2
  8. gr4vy/models/create_payment_methodop.py +6 -0
  9. gr4vy/models/paymentlink.py +6 -3
  10. gr4vy/models/paymentmethodsummaries.py +6 -3
  11. gr4vy/models/{paymentmethodsummary.py → paymentmethodsummary_output.py} +2 -2
  12. gr4vy/models/{paymentoption.py → paymentoption_output.py} +2 -2
  13. gr4vy/models/paymentoptions.py +3 -3
  14. gr4vy/models/payoutsummary.py +11 -8
  15. gr4vy/models/plaidpaymentmethodcreate.py +99 -0
  16. gr4vy/models/{transaction.py → transaction_output.py} +18 -15
  17. gr4vy/models/{transactionbuyer.py → transactionbuyer_output.py} +2 -2
  18. gr4vy/models/transactioncancel.py +3 -3
  19. gr4vy/models/{transactioncapture.py → transactioncapture_output.py} +5 -5
  20. gr4vy/models/transactioncreate.py +6 -0
  21. gr4vy/models/{transactionevent.py → transactionevent_output.py} +2 -2
  22. gr4vy/models/transactionevents.py +6 -3
  23. gr4vy/models/{transactionpaymentmethod.py → transactionpaymentmethod_output.py} +2 -2
  24. gr4vy/models/transactionsummaries.py +6 -3
  25. gr4vy/models/{transactionsummary.py → transactionsummary_output.py} +13 -10
  26. gr4vy/models/{transactionthreedsecuresummary.py → transactionthreedsecuresummary_output.py} +2 -2
  27. gr4vy/models/{transactionvoid.py → transactionvoid_output.py} +5 -5
  28. gr4vy/models/void_transactionop.py +7 -4
  29. gr4vy/transactions.py +16 -16
  30. {gr4vy-1.6.3.dist-info → gr4vy-1.6.5.dist-info}/METADATA +1 -1
  31. {gr4vy-1.6.3.dist-info → gr4vy-1.6.5.dist-info}/RECORD +32 -31
  32. {gr4vy-1.6.3.dist-info → gr4vy-1.6.5.dist-info}/WHEEL +0 -0
gr4vy/transactions.py CHANGED
@@ -788,7 +788,7 @@ class Transactions(BaseSDK):
788
788
  server_url: Optional[str] = None,
789
789
  timeout_ms: Optional[int] = None,
790
790
  http_headers: Optional[Mapping[str, str]] = None,
791
- ) -> models.Transaction:
791
+ ) -> models.TransactionOutput:
792
792
  r"""Create transaction
793
793
 
794
794
  Create a new transaction using a supported payment method. If additional buyer authorization is required, an approval URL will be returned. Duplicated gift card numbers are not supported.
@@ -983,7 +983,7 @@ class Transactions(BaseSDK):
983
983
 
984
984
  response_data: Any = None
985
985
  if utils.match_response(http_res, "201", "application/json"):
986
- return unmarshal_json_response(models.Transaction, http_res)
986
+ return unmarshal_json_response(models.TransactionOutput, http_res)
987
987
  if utils.match_response(http_res, "400", "application/json"):
988
988
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
989
989
  raise errors.Error400(response_data, http_res)
@@ -1105,7 +1105,7 @@ class Transactions(BaseSDK):
1105
1105
  server_url: Optional[str] = None,
1106
1106
  timeout_ms: Optional[int] = None,
1107
1107
  http_headers: Optional[Mapping[str, str]] = None,
1108
- ) -> models.Transaction:
1108
+ ) -> models.TransactionOutput:
1109
1109
  r"""Create transaction
1110
1110
 
1111
1111
  Create a new transaction using a supported payment method. If additional buyer authorization is required, an approval URL will be returned. Duplicated gift card numbers are not supported.
@@ -1300,7 +1300,7 @@ class Transactions(BaseSDK):
1300
1300
 
1301
1301
  response_data: Any = None
1302
1302
  if utils.match_response(http_res, "201", "application/json"):
1303
- return unmarshal_json_response(models.Transaction, http_res)
1303
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1304
1304
  if utils.match_response(http_res, "400", "application/json"):
1305
1305
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1306
1306
  raise errors.Error400(response_data, http_res)
@@ -1357,7 +1357,7 @@ class Transactions(BaseSDK):
1357
1357
  server_url: Optional[str] = None,
1358
1358
  timeout_ms: Optional[int] = None,
1359
1359
  http_headers: Optional[Mapping[str, str]] = None,
1360
- ) -> models.Transaction:
1360
+ ) -> models.TransactionOutput:
1361
1361
  r"""Get transaction
1362
1362
 
1363
1363
  Retrieve the details of a transaction by its unique identifier.
@@ -1447,7 +1447,7 @@ class Transactions(BaseSDK):
1447
1447
 
1448
1448
  response_data: Any = None
1449
1449
  if utils.match_response(http_res, "200", "application/json"):
1450
- return unmarshal_json_response(models.Transaction, http_res)
1450
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1451
1451
  if utils.match_response(http_res, "400", "application/json"):
1452
1452
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1453
1453
  raise errors.Error400(response_data, http_res)
@@ -1504,7 +1504,7 @@ class Transactions(BaseSDK):
1504
1504
  server_url: Optional[str] = None,
1505
1505
  timeout_ms: Optional[int] = None,
1506
1506
  http_headers: Optional[Mapping[str, str]] = None,
1507
- ) -> models.Transaction:
1507
+ ) -> models.TransactionOutput:
1508
1508
  r"""Get transaction
1509
1509
 
1510
1510
  Retrieve the details of a transaction by its unique identifier.
@@ -1594,7 +1594,7 @@ class Transactions(BaseSDK):
1594
1594
 
1595
1595
  response_data: Any = None
1596
1596
  if utils.match_response(http_res, "200", "application/json"):
1597
- return unmarshal_json_response(models.Transaction, http_res)
1597
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1598
1598
  if utils.match_response(http_res, "400", "application/json"):
1599
1599
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1600
1600
  raise errors.Error400(response_data, http_res)
@@ -1659,7 +1659,7 @@ class Transactions(BaseSDK):
1659
1659
  server_url: Optional[str] = None,
1660
1660
  timeout_ms: Optional[int] = None,
1661
1661
  http_headers: Optional[Mapping[str, str]] = None,
1662
- ) -> models.Transaction:
1662
+ ) -> models.TransactionOutput:
1663
1663
  r"""Manually update a transaction
1664
1664
 
1665
1665
  Manually updates a transaction.
@@ -1763,7 +1763,7 @@ class Transactions(BaseSDK):
1763
1763
 
1764
1764
  response_data: Any = None
1765
1765
  if utils.match_response(http_res, "200", "application/json"):
1766
- return unmarshal_json_response(models.Transaction, http_res)
1766
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1767
1767
  if utils.match_response(http_res, "400", "application/json"):
1768
1768
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1769
1769
  raise errors.Error400(response_data, http_res)
@@ -1828,7 +1828,7 @@ class Transactions(BaseSDK):
1828
1828
  server_url: Optional[str] = None,
1829
1829
  timeout_ms: Optional[int] = None,
1830
1830
  http_headers: Optional[Mapping[str, str]] = None,
1831
- ) -> models.Transaction:
1831
+ ) -> models.TransactionOutput:
1832
1832
  r"""Manually update a transaction
1833
1833
 
1834
1834
  Manually updates a transaction.
@@ -1932,7 +1932,7 @@ class Transactions(BaseSDK):
1932
1932
 
1933
1933
  response_data: Any = None
1934
1934
  if utils.match_response(http_res, "200", "application/json"):
1935
- return unmarshal_json_response(models.Transaction, http_res)
1935
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1936
1936
  if utils.match_response(http_res, "400", "application/json"):
1937
1937
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1938
1938
  raise errors.Error400(response_data, http_res)
@@ -2897,7 +2897,7 @@ class Transactions(BaseSDK):
2897
2897
  server_url: Optional[str] = None,
2898
2898
  timeout_ms: Optional[int] = None,
2899
2899
  http_headers: Optional[Mapping[str, str]] = None,
2900
- ) -> models.Transaction:
2900
+ ) -> models.TransactionOutput:
2901
2901
  r"""Sync transaction
2902
2902
 
2903
2903
  Synchronizes the status of a transaction with the underlying payment service provider. This is useful for transactions in a pending state to check if they've been completed or failed. Only available for some payment service providers.
@@ -2983,7 +2983,7 @@ class Transactions(BaseSDK):
2983
2983
 
2984
2984
  response_data: Any = None
2985
2985
  if utils.match_response(http_res, "200", "application/json"):
2986
- return unmarshal_json_response(models.Transaction, http_res)
2986
+ return unmarshal_json_response(models.TransactionOutput, http_res)
2987
2987
  if utils.match_response(http_res, "400", "application/json"):
2988
2988
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
2989
2989
  raise errors.Error400(response_data, http_res)
@@ -3040,7 +3040,7 @@ class Transactions(BaseSDK):
3040
3040
  server_url: Optional[str] = None,
3041
3041
  timeout_ms: Optional[int] = None,
3042
3042
  http_headers: Optional[Mapping[str, str]] = None,
3043
- ) -> models.Transaction:
3043
+ ) -> models.TransactionOutput:
3044
3044
  r"""Sync transaction
3045
3045
 
3046
3046
  Synchronizes the status of a transaction with the underlying payment service provider. This is useful for transactions in a pending state to check if they've been completed or failed. Only available for some payment service providers.
@@ -3126,7 +3126,7 @@ class Transactions(BaseSDK):
3126
3126
 
3127
3127
  response_data: Any = None
3128
3128
  if utils.match_response(http_res, "200", "application/json"):
3129
- return unmarshal_json_response(models.Transaction, http_res)
3129
+ return unmarshal_json_response(models.TransactionOutput, http_res)
3130
3130
  if utils.match_response(http_res, "400", "application/json"):
3131
3131
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
3132
3132
  raise errors.Error400(response_data, http_res)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gr4vy
3
- Version: 1.6.3
3
+ Version: 1.6.5
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Gr4vy
6
6
  Requires-Python: >=3.9.2
@@ -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=X_n2-s-UjtAOy6PfMwer4AUVgC_Gs_hns_pmy9aqiw0,452
5
+ gr4vy/_version.py,sha256=YJOH_kVhqNEuzMqoyX9a3QzeTDXX6OW4ZiSTuEwi288,452
6
6
  gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
7
7
  gr4vy/all.py,sha256=jZtRqz8D1xGrylI95KA2XNwWLVAID1o_AYxA9wpXTzs,15176
8
8
  gr4vy/audit_logs.py,sha256=U16uKNF7H514ZBM0cAeSz2U2JT4P-SPGIJU6d6KOH34,17087
@@ -40,7 +40,7 @@ gr4vy/gift_cards_sdk.py,sha256=bVotXOI7TX5r32YIivU2_6eANtXdekxYbqeYK8MdzGA,57427
40
40
  gr4vy/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
41
41
  gr4vy/jobs.py,sha256=-UcByXMOnDc5cEiaBaXB_0S5eT2WdRWYcytE2p2j8WE,14569
42
42
  gr4vy/merchant_accounts_sdk.py,sha256=tGPWxXP7IOKeZ1Gh8LJ4yTpkSnsL-C56aXKfTCf4z9E,82263
43
- gr4vy/models/__init__.py,sha256=m-3vS_ftlfy4mycslUCZlBDB8K-ZxujUhR6NCNLQwz4,134379
43
+ gr4vy/models/__init__.py,sha256=nsHepCMzEbkZFzgDYNl8E_tKQwuDPm7ODGTc22wdufI,135562
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
@@ -67,8 +67,8 @@ gr4vy/models/applepaypaymentmethodcreate.py,sha256=M5kz8yeBjIS6_bJaoqmU1Vps8Giz6
67
67
  gr4vy/models/applepaysessionrequest.py,sha256=1cZiA-8CbZc1NaAuDp6j2WKO6GTcw3sscUTJfAdT5Lo,656
68
68
  gr4vy/models/approvaltarget.py,sha256=krVN1UPJHlmOoVtR3w5OyW0lBaVQ-7Rwo-dVmMiweNQ,288
69
69
  gr4vy/models/auditlogaction.py,sha256=gBZedeTFy0p3uk1ATyuA4CJ17GjDRpV5EildTydXNYc,366
70
- gr4vy/models/auditlogentries.py,sha256=zJpcTRayJdPPgW-qRnFxZmEATjxmfP9HFBYvmwL-CWk,2191
71
- gr4vy/models/auditlogentry.py,sha256=MWuCcSDsNp68RSgEJnrtYc4k-_WQvCw6YHOtIv5KByk,2875
70
+ gr4vy/models/auditlogentries.py,sha256=qqglDCmqBIggcPKEfu7bUmZN2JOAulO-p3jRzgzLmqk,2222
71
+ gr4vy/models/auditlogentry_output.py,sha256=ZY7_0YDgTUgaw1Ae-ki-u2joJnjaDFj2u3_7WDVIOwY,2887
72
72
  gr4vy/models/auditlogentryresource.py,sha256=D5ZZA3lK2mFWmNS_TOTr68tMRSnlhqbUQWIM_bt-PX0,599
73
73
  gr4vy/models/auditlogentryuser.py,sha256=lpofD8s853q1-lGvFKLj5jSza_RdenvlRd6icgt2Oic,2430
74
74
  gr4vy/models/avsresponsecode.py,sha256=8ozUlzHAkMoAmIW3lBHkBPkZs62foCEvWHLdFYQC6Bg,409
@@ -83,7 +83,7 @@ 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
85
  gr4vy/models/cancelstatus.py,sha256=9yb-oK8IL6apWdp1wmZBAqP9TYrz8vXG4Bbc3rQrXGE,307
86
- gr4vy/models/capture_transactionop.py,sha256=-mWQC7dDILr0PKYgC6mOTcD2vYRtumbd92IAbbf67MM,3726
86
+ gr4vy/models/capture_transactionop.py,sha256=3qN-bZnkJeL9Vt9rANCRxTSsfg8F3gqOQn6CqfgNzQw,3801
87
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
@@ -93,9 +93,9 @@ 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
96
- gr4vy/models/checkoutsession.py,sha256=8F2605WfA_m7wZp-ifpHywytaXTMbVPEvQ7MuIP46HA,4386
96
+ gr4vy/models/checkoutsession.py,sha256=Rka7MG7eb38Is-fi1lhLQ19G7AeCQziEp0s7JVU_uUg,4417
97
97
  gr4vy/models/checkoutsessioncreate.py,sha256=-anN5QD3pAsvD4TBdUpKgp105_tAQ-qPwYoGDsupWH0,3043
98
- gr4vy/models/checkoutsessionpaymentmethod.py,sha256=f1Gwael0Ka0SRVOG1-SLMysxAKuK1SpshuPOPIuyIuM,3489
98
+ gr4vy/models/checkoutsessionpaymentmethod_output.py,sha256=UprdKWlazKjng81UVnUU50LRYsgcMSKHi3jw9ilDwIw,3501
99
99
  gr4vy/models/checkoutsessionpaymentmethodcreate.py,sha256=0s5A8q7GtMIzXm_yFh_HCDL-WkQFLmi-1SHvV_D_Czw,3076
100
100
  gr4vy/models/checkoutsessionpaymentmethoddetails.py,sha256=qs8nac4BrRov9q7lT1FmqfsoOy7XO3UiMjq5ZJlSOm4,2297
101
101
  gr4vy/models/checkoutsessionwithurlpaymentmethodcreate.py,sha256=6rJ1E4_rt2jWk7nXr2VL3YuZj1I2jgjhe0L39SYL6EU,3576
@@ -113,7 +113,7 @@ gr4vy/models/create_google_pay_digital_wallet_sessionop.py,sha256=V9gW3w6MuQaQs1
113
113
  gr4vy/models/create_payment_method_network_token_cryptogramop.py,sha256=5zvjMjNa-l_3JxarzBPhi_SdAVDfSWcaQCZ5XDsjjbw,2152
114
114
  gr4vy/models/create_payment_method_network_tokenop.py,sha256=hlGlYp8PNEN8F4EBS_lTQWvy5uRo6VwqDWS9i67nvXw,1902
115
115
  gr4vy/models/create_payment_method_payment_service_tokenop.py,sha256=jCfHSkq9p3xXGskN3DKvu5_2aBjyTCfwe5LRQam0Ueo,1994
116
- gr4vy/models/create_payment_methodop.py,sha256=sj6rXbMsJLIwM8ksvPcMd5MFnvVYfiGB8ALMQzgem3Y,2227
116
+ gr4vy/models/create_payment_methodop.py,sha256=P6nWHpHABPaJWlBsRW0rQhdf94KoiG2gscuk99MtoBY,2415
117
117
  gr4vy/models/create_payment_service_definition_sessionop.py,sha256=3eabWTaVZUihnEv9LEZ6UnjCM5i-bwKAdkKyEnOx0WM,780
118
118
  gr4vy/models/create_payment_service_sessionop.py,sha256=MxkcRuCzwso_Z-i5iFht0d5HNRSJULdf0worMFyUfpc,1788
119
119
  gr4vy/models/create_payment_serviceop.py,sha256=GXk91h_GkGn4XrTDX-xn2wjUVLDHcWTgcKkVB5Hw4u8,1876
@@ -260,7 +260,7 @@ gr4vy/models/nuveiairlinedataoptions.py,sha256=LRvIzboyvbAK83iIxfkDDLfspgA2hB04i
260
260
  gr4vy/models/nuveioptions.py,sha256=ms46xui6MunqvGv_SK9S1Q7VQo1UI0hju2kqjUFNeRE,2063
261
261
  gr4vy/models/nuveipseoptions.py,sha256=0CtBMe2cxU6XToQamYy25jCD0rMAl2Ko2KETtNyta1Q,2426
262
262
  gr4vy/models/oxxooptions.py,sha256=UjdEwwdwr-N7b8_3gwE1rgxjmfadQRghk9vzZmS4uPU,1910
263
- gr4vy/models/paymentlink.py,sha256=CH3JroLJo8G2i7C2Ei4E1xbToQ7I9v_SWyVcd7VrSRM,8380
263
+ gr4vy/models/paymentlink.py,sha256=o7wzhlnRJHjqVUn2Q5yPhE-pj6UlVICgbPpSDeAjZf0,8424
264
264
  gr4vy/models/paymentlinkcreate.py,sha256=3Dz1vIn7r5Q7Td7mZS_yTJqthIOAIfV-jDdmBhMzrHs,7154
265
265
  gr4vy/models/paymentlinks.py,sha256=i7Sj7x18rY5HR-E_LkinvTpVjnl8aCMCldQJFXnV9Lk,2175
266
266
  gr4vy/models/paymentlinkstatus.py,sha256=e09HkfXNZDZSN_lkHCyiW7IaI-8JtM-_UmSOQ_im7ZE,334
@@ -270,13 +270,13 @@ gr4vy/models/paymentmethoddetailscard.py,sha256=FH5LZkKpXm-GMJ6tLH4-WMEtW6syYOFi
270
270
  gr4vy/models/paymentmethods.py,sha256=KYpooSk-VfLJYror_5N7Y8CECdK3VOBRS20sJQMZucc,2189
271
271
  gr4vy/models/paymentmethodstatus.py,sha256=yLhYIXrB7m2i8_NNx6uX-mN2VQN_3eIEHVqKxclw0pU,370
272
272
  gr4vy/models/paymentmethodstoredcard.py,sha256=-eJedn0lPGka3ChipisusyadKcF_vaUYtOJIVfnKJAo,829
273
- gr4vy/models/paymentmethodsummaries.py,sha256=IFAC3w_TIQJbIyebLaotn91QzGyeuyWwAWKgBTzaZ9Q,580
274
- gr4vy/models/paymentmethodsummary.py,sha256=pNYYUbuvjn-d4T5Quuf0o3lWVnrmctkxoKOEQXuX6AA,8104
275
- gr4vy/models/paymentoption.py,sha256=s2ErG1kVt3PWh819Ufykb6x-CsC0SUmZVDi49ETlVys,3028
273
+ gr4vy/models/paymentmethodsummaries.py,sha256=blEV6yHcHbf4CsYZg0uYHCX2hOvQ6cUD7Xub5RlSbyU,624
274
+ gr4vy/models/paymentmethodsummary_output.py,sha256=1RyXjema_ZfO_nPbe_uOwBPyZIIaNcoZHeLR90_UgNw,8116
275
+ gr4vy/models/paymentoption_output.py,sha256=6iQ4jMxi8-S4ThXvKvP4u_7G0AHeJnS4YP2qOAmg96c,3040
276
276
  gr4vy/models/paymentoptioncontext.py,sha256=WuNiu2A5LB0RnbFyAPnpDn-mtmrKnW8CkTbWDQK2z2k,2365
277
277
  gr4vy/models/paymentoptioncontextapprovalui.py,sha256=4Z7EOMtSOVkZdWq9lypc7DuXYRv49chHTCoCc-TN-dQ,1482
278
278
  gr4vy/models/paymentoptionrequest.py,sha256=VwgQt4ZWnD8h4LXOlXRrgTTvKvg3QPfSTdnMqPVLFNQ,3581
279
- gr4vy/models/paymentoptions.py,sha256=UBO33M1pUufA36vL2mck8riIKni1lKBFUkT_EgsjLpQ,529
279
+ gr4vy/models/paymentoptions.py,sha256=5yTJP5r1SQkh5ea1BN3AdpurnQf4H5EL33Qe6gLBYO4,560
280
280
  gr4vy/models/paymentservice.py,sha256=zKIX8C4gPAR-cJglDxcezutICt2nKdK7mERaYhsvq84,8019
281
281
  gr4vy/models/paymentserviceconfiguration.py,sha256=wD-SYLJsaKafJwlfLvEJgp3fh7tcTy6J1kZ40mtvxMI,1731
282
282
  gr4vy/models/paymentservicecreate.py,sha256=OTOwuJmTD5wavfDcIdNQS-LY5xiJORDuk6eMYFJetU0,5930
@@ -296,11 +296,12 @@ gr4vy/models/payoutmerchantsummary.py,sha256=BZFrzFYEQwZ5cAsUK_YbTvFZGgAc0oTcvza
296
296
  gr4vy/models/payoutpaymentservice.py,sha256=hdY8gf6uG9GHxBKve9OatNiRoKSCsoDClGlvJua0Zkg,2653
297
297
  gr4vy/models/payoutstatus.py,sha256=noJUkRfZ4ShNUbU9Lo1c8x5UzPVy3bselJ3-fcN_yKM,327
298
298
  gr4vy/models/payoutsummaries.py,sha256=n9rCKfAKn77Cyvy8WCfkKtCTI-wDxSJNraJBqT_RnV8,2191
299
- gr4vy/models/payoutsummary.py,sha256=qnx3ShxDXmkKk8LXgGDtVatyxPqPjXneYarXGK_AiOQ,5435
299
+ gr4vy/models/payoutsummary.py,sha256=7CSo5GuIG2x3jkw9-WqHA2ZIxNBATIpFFsa18puSh2Y,5510
300
300
  gr4vy/models/paypaloptions.py,sha256=aY81ZsVtUgXnGmzSxWoHI3KhMs-_gCZpA6hjbS7sFB8,2038
301
301
  gr4vy/models/paypalshippingoptions.py,sha256=85pRPBHzUzhNnoF8sFRjaQ2d64-hIXr-AMDj6z1FUZQ,1787
302
302
  gr4vy/models/paypalshippingoptionsitem.py,sha256=Q09suxnZ3fIxUpOuyGpNljfPfFKoq82V0L0-Wyt7rSI,3424
303
303
  gr4vy/models/paypalshippingoptionsitemamount.py,sha256=YuROvTE2ngGuHajoRnIRY3NwSr3mtADnHes3Xao2llA,608
304
+ gr4vy/models/plaidpaymentmethodcreate.py,sha256=toULZY1sWb-7gqsUaCI2h1MjeNOpM7QovBYG0_O9MTo,3581
304
305
  gr4vy/models/powertranzoptions.py,sha256=ZJAZVTggH_fMMwvMlNvJGe0RpLcASaWBmH5Ln7SgxrU,1692
305
306
  gr4vy/models/producttype.py,sha256=qsHybq-2rssJDt3greV0fng-wnHKVaFWGMvf3-52u70,418
306
307
  gr4vy/models/recipient.py,sha256=ORw0V4wDt3ytidIDj0Dmut92naYoRkMznh0LKuK17Rs,2568
@@ -349,19 +350,19 @@ gr4vy/models/threedsecuremethod.py,sha256=SZYNn4TSu2K_-VE458NaWtNpNZl1Y8WFJFQwMu
349
350
  gr4vy/models/threedsecurestatus.py,sha256=ok7YxtoF76wJY9htTMKVmZqGWwDkVQPdFs3lEoIg9eI,356
350
351
  gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
351
352
  gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
352
- gr4vy/models/transaction.py,sha256=vpzG0BzxZvHA1zEagbsPy7Ka9YwgyoJmThzesIcTAcA,25005
353
- gr4vy/models/transactionbuyer.py,sha256=7VxBYmR7IBNA082NqCCdwWtOjyK9ut5dPS4M-6rVHjE,3074
354
- gr4vy/models/transactioncancel.py,sha256=OHP0xmmM374aaYXPeV0G2fZn5RRfxbTAzJnNospfCas,3162
355
- gr4vy/models/transactioncapture.py,sha256=7WD3uoUyDJ1sejtjIb7b5B5BFtpKEi7KkegVtB0DLTg,3174
353
+ gr4vy/models/transaction_output.py,sha256=-DawGogoCY_MMM_jHC__Cc8tsbTr7dlBV3iZGcny7Z4,25123
354
+ gr4vy/models/transactionbuyer_output.py,sha256=JGUni3lVy6ERIgzFP81RpjMJpfjdc19-O126OMb8QjM,3086
355
+ gr4vy/models/transactioncancel.py,sha256=KIptVtqlwZmoWhB0XgjJfNJS6u1q9Y8o2OH8Mq-zFWM,3193
356
+ gr4vy/models/transactioncapture_output.py,sha256=PIMt4SUkooYkZKt5k15Z-CdXHu3RBCL9Uez5RaOqEn4,3217
356
357
  gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
357
358
  gr4vy/models/transactionconnectionoptions.py,sha256=w0hd7aV9Byy8BrN8qhSbygoiafOzX3A8q9tMZ95WMTI,19123
358
- gr4vy/models/transactioncreate.py,sha256=F-XjrUKfSf9JtafkUP_qRNFFL6Rp85FKHM8Zi26qUKs,27074
359
- gr4vy/models/transactionevent.py,sha256=rZm6VX53piqFWSMMP1rLsRqV2rw6_5J7BHrUt4Nfh2M,3871
360
- gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
359
+ gr4vy/models/transactioncreate.py,sha256=jOCtjiWbnIYDHyrSFC5LUdpwGosFdJppzLgoz039QM4,27262
360
+ gr4vy/models/transactionevent_output.py,sha256=Hj_pdhLQ-pgm3f6nD9NR9GLXKQRn0o3F80_29zMN8T8,3883
361
+ gr4vy/models/transactionevents.py,sha256=BIzlBBLSuci0j_k_HjJaK1QpKBhuqZkkaq1zbPHG6x0,2254
361
362
  gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
362
363
  gr4vy/models/transactionintent.py,sha256=RS4C1XxvLSJqHF9iBtyvX5y6kCHOqlcUz7MTQuyMSM8,294
363
364
  gr4vy/models/transactionintentoutcome.py,sha256=0-TNOB-W2uMH3keCtiMLwz2ettqYXu6swb10yRpVFiY,319
364
- gr4vy/models/transactionpaymentmethod.py,sha256=_uZqRH1cLCoyJPU6an26k27DFWMsNyGeG0HQlyybBx0,7424
365
+ gr4vy/models/transactionpaymentmethod_output.py,sha256=Y_Rh9NCMWSdT0V_K8Gei1jDLn2t3ZUMIeIJvvaKuYGE,7436
365
366
  gr4vy/models/transactionpaymentservice.py,sha256=kBS56vZtxCtiX37gxpTVlBzIkmUIa-ppJHPpiQRMM-s,1428
366
367
  gr4vy/models/transactionpaymentsource.py,sha256=OdbWCrAuSIrIf8dwQ4WqlOl6J9Y6EQ3I5Rs-YxfrFxY,437
367
368
  gr4vy/models/transactionrefundallcreate.py,sha256=EUachxUB50TDFFKeTzl9OmPatOCwISTKS0mFE83XgwI,1882
@@ -369,11 +370,11 @@ gr4vy/models/transactionrefundcreate.py,sha256=mmK7NsYYFbgPg-0FiJjsHlmGBl_KesQuS
369
370
  gr4vy/models/transactionretriesreportspec.py,sha256=PUnfQb7ILdp1spWV_Fo9XgbTND7oH1RVx31nZO66_40,1004
370
371
  gr4vy/models/transactionsreportspec.py,sha256=e1yggg1lXLVMavufoIlbzS9T3k9Hdv6iJj5qKzRlj4c,950
371
372
  gr4vy/models/transactionstatus.py,sha256=pYWF680-mTUHe6WfzEBhgxxBn_TK8qEln-4hPD-PeCw,537
372
- gr4vy/models/transactionsummaries.py,sha256=WiOtmYDPjsKJL3dYiyIifsLtAI0wyAFwWNSsrIbyljg,2226
373
- gr4vy/models/transactionsummary.py,sha256=mv9GfyZIgsygR4_IxFwYHNWaOirgeQGfwC9VdknjKow,12022
374
- gr4vy/models/transactionthreedsecuresummary.py,sha256=rRFrtiW0auNHauNBNDlIkDd1WfoiTCAEFtg1W7BLoIg,5383
373
+ gr4vy/models/transactionsummaries.py,sha256=dlwVidOsTcS3FEfybBJYrDzC1LqyjN1tTJVUc2Jv8tc,2270
374
+ gr4vy/models/transactionsummary_output.py,sha256=QuIuDuUuyNAze6M1xqWXmM6TQJy0FTpEXciG2tDk4L0,12109
375
+ gr4vy/models/transactionthreedsecuresummary_output.py,sha256=Nc_OvGh_jAVpOs8k_aDFSDb8YMPojEUzNiFgpAmpsBY,5395
375
376
  gr4vy/models/transactionupdate.py,sha256=BnCR-1aNA40v0L0ayps0NtiSSclYh6Zhvi4Py1GWmY0,3514
376
- gr4vy/models/transactionvoid.py,sha256=z0Rk_1Yrq9zT79UDbJt7OyG_fILUHCcY0p0C9b5Si70,3138
377
+ gr4vy/models/transactionvoid_output.py,sha256=ECuKhDMzfPaB-q8UmmtO1LYL9l0rrQ1WYpY87kLekFc,3181
377
378
  gr4vy/models/travelhubcustomdata.py,sha256=qVMavG75E8LRhu-FlNNuu_I863VWYCUp29XH7NjOlqk,1690
378
379
  gr4vy/models/travelhuboptions.py,sha256=KAg0lkauHtpiwRueJWqzpp9T2Dh1EiVgU4cF8PAkqIg,2062
379
380
  gr4vy/models/trustlyoptions.py,sha256=e0_PJTkNYqO5WE1d7qz9WaveM53xcuOXjqKmXCfSyKg,1927
@@ -390,7 +391,7 @@ gr4vy/models/userstatus.py,sha256=bmlF_Mt656z9o2ibhQ5_dohFs6nEKsuAoNdToCe4vE4,30
390
391
  gr4vy/models/validationerror.py,sha256=4wRWnXDL-O7GxCdKzmEuWyv-xTywx124gpf65A1OyVc,522
391
392
  gr4vy/models/verify_payment_service_credentialsop.py,sha256=IEO3QA3Nn6n-EcfuovKKr5Y-WFJfnU0lxRSvwJ-F7Yc,1623
392
393
  gr4vy/models/verifycredentials.py,sha256=M4VoMBhJxmtTf9LXiL_7v3K6y5Gte-H3YGGpkIqB_n8,2278
393
- gr4vy/models/void_transactionop.py,sha256=w9b7eWXsFC_auWkQjKDo348Y8RvZEu-yoEXqWRHyUys,3309
394
+ gr4vy/models/void_transactionop.py,sha256=neqJjtbAtl3BGcDQiC3gAJhkiPbQ9mjrgzzBXeESEuI,3384
394
395
  gr4vy/models/voidablefield.py,sha256=uApDDXV7oryN_PtHh1YH7dhBpFtPF4t5UqYzO4Hf1Sk,316
395
396
  gr4vy/models/voidstatus.py,sha256=d1Xfuz1p1H3zCg11TWn-SPHxtULvy8HjmSKbGIHGW78,325
396
397
  gr4vy/models/walletpaymentoptioncontext.py,sha256=aQfoRvTnYyNzpJfgpXvkoPbpUZGGEHg0ERjQq3udmCk,422
@@ -414,7 +415,7 @@ gr4vy/reports_sdk.py,sha256=S7SF4TvPf8DEBMjh9flsDBgfM76Nf-GQzQ3950_7aDI,59641
414
415
  gr4vy/sdk.py,sha256=2hfDkFfqPXyFR8w4J0joQrk_5xirotLtFrRYu5glAq4,10519
415
416
  gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
416
417
  gr4vy/sessions.py,sha256=xuP2ijGiew7R9Ei4HxGSyysPl_dJ6O_TaKLuLPmnxZU,41621
417
- gr4vy/transactions.py,sha256=GehlV9-oCOo09fJKI2boy5m8jhDvb47c--uDGB3WjyI,168747
418
+ gr4vy/transactions.py,sha256=hJDcDis6LPQH0YKljgtQ7ZQzs4DVHqh2VW7eVBHWGxU,168843
418
419
  gr4vy/transactions_refunds.py,sha256=lpOVupveezk8vzXI8CMUIUV2b889wYYvT4kF42KQU-M,43603
419
420
  gr4vy/transactions_settlements.py,sha256=IHzgj9udsM2xA_-bsjGgnKy8Wo4FDqRoHbCipTZR8uw,27758
420
421
  gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
@@ -437,6 +438,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
437
438
  gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
438
439
  gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
439
440
  gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
440
- gr4vy-1.6.3.dist-info/METADATA,sha256=LT2_tvVh-aaSq5805wefm0glYh4C4ly-1ypAPO23jHA,44091
441
- gr4vy-1.6.3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
442
- gr4vy-1.6.3.dist-info/RECORD,,
441
+ gr4vy-1.6.5.dist-info/METADATA,sha256=YX6oIezSwEdQFFL34YOvj_P2lMnnBzHd_SVMTe8yeF8,44091
442
+ gr4vy-1.6.5.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
443
+ gr4vy-1.6.5.dist-info/RECORD,,
File without changes