gr4vy 1.5.6__py3-none-any.whl → 1.7.1__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 (44) hide show
  1. gr4vy/_version.py +3 -3
  2. gr4vy/checkout_sessions.py +20 -2
  3. gr4vy/models/__init__.py +137 -78
  4. gr4vy/models/auditlogentries.py +3 -3
  5. gr4vy/models/{auditlogentry.py → auditlogentry_output.py} +2 -2
  6. gr4vy/models/capture_transactionop.py +7 -4
  7. gr4vy/models/checkoutsession.py +26 -5
  8. gr4vy/models/checkoutsessioncreate.py +36 -2
  9. gr4vy/models/{checkoutsessionpaymentmethod.py → checkoutsessionpaymentmethod_output.py} +2 -2
  10. gr4vy/models/create_payment_methodop.py +6 -0
  11. gr4vy/models/forterantifraudoptionscartitembasicitemdata.py +4 -3
  12. gr4vy/models/instrumenttype.py +1 -0
  13. gr4vy/models/integrationclient.py +16 -0
  14. gr4vy/models/monatospeioptions.py +15 -0
  15. gr4vy/models/paymentlink.py +6 -3
  16. gr4vy/models/paymentmethodsummaries.py +6 -3
  17. gr4vy/models/{paymentmethodsummary.py → paymentmethodsummary_output.py} +2 -2
  18. gr4vy/models/{paymentoption.py → paymentoption_output.py} +2 -2
  19. gr4vy/models/paymentoptions.py +3 -3
  20. gr4vy/models/paymentservicedefinition.py +9 -1
  21. gr4vy/models/payoutsummary.py +11 -8
  22. gr4vy/models/paypaloptions.py +8 -2
  23. gr4vy/models/paypalshippingoptions.py +51 -0
  24. gr4vy/models/paypalshippingoptionsitem.py +94 -0
  25. gr4vy/models/paypalshippingoptionsitemamount.py +20 -0
  26. gr4vy/models/plaidpaymentmethodcreate.py +99 -0
  27. gr4vy/models/{transaction.py → transaction_output.py} +25 -15
  28. gr4vy/models/{transactionbuyer.py → transactionbuyer_output.py} +2 -2
  29. gr4vy/models/transactioncancel.py +3 -3
  30. gr4vy/models/{transactioncapture.py → transactioncapture_output.py} +5 -5
  31. gr4vy/models/transactionconnectionoptions.py +10 -0
  32. gr4vy/models/transactioncreate.py +16 -0
  33. gr4vy/models/{transactionevent.py → transactionevent_output.py} +2 -2
  34. gr4vy/models/transactionevents.py +6 -3
  35. gr4vy/models/{transactionpaymentmethod.py → transactionpaymentmethod_output.py} +2 -2
  36. gr4vy/models/transactionsummaries.py +6 -3
  37. gr4vy/models/{transactionsummary.py → transactionsummary_output.py} +13 -10
  38. gr4vy/models/{transactionthreedsecuresummary.py → transactionthreedsecuresummary_output.py} +2 -2
  39. gr4vy/models/{transactionvoid.py → transactionvoid_output.py} +5 -5
  40. gr4vy/models/void_transactionop.py +7 -4
  41. gr4vy/transactions.py +22 -16
  42. {gr4vy-1.5.6.dist-info → gr4vy-1.7.1.dist-info}/METADATA +3 -3
  43. {gr4vy-1.5.6.dist-info → gr4vy-1.7.1.dist-info}/RECORD +44 -38
  44. {gr4vy-1.5.6.dist-info → gr4vy-1.7.1.dist-info}/WHEEL +0 -0
@@ -1,7 +1,7 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from .transaction import Transaction, TransactionTypedDict
4
+ from .transaction_output import TransactionOutput, TransactionOutputTypedDict
5
5
  from .voidstatus import VoidStatus
6
6
  from gr4vy.types import BaseModel, Nullable, UNSET_SENTINEL
7
7
  from gr4vy.utils import validate_const, validate_open_enum
@@ -12,7 +12,7 @@ from typing import Literal, Optional
12
12
  from typing_extensions import Annotated, TypedDict
13
13
 
14
14
 
15
- class TransactionVoidTypedDict(TypedDict):
15
+ class TransactionVoidOutputTypedDict(TypedDict):
16
16
  status: VoidStatus
17
17
  code: Nullable[str]
18
18
  r"""The standardized error code set by Gr4vy."""
@@ -20,13 +20,13 @@ class TransactionVoidTypedDict(TypedDict):
20
20
  r"""This is the response code received from the payment service. This can be set to any value and is not standardized across different payment services."""
21
21
  raw_response_description: Nullable[str]
22
22
  r"""This is the response description received from the payment service. This can be set to any value and is not standardized across different payment services."""
23
- transaction: TransactionTypedDict
23
+ transaction: TransactionOutputTypedDict
24
24
  r"""A full transaction resource."""
25
25
  type: Literal["transaction-void"]
26
26
  r"""Always `transaction-void`."""
27
27
 
28
28
 
29
- class TransactionVoid(BaseModel):
29
+ class TransactionVoidOutput(BaseModel):
30
30
  status: Annotated[VoidStatus, PlainValidator(validate_open_enum(False))]
31
31
 
32
32
  code: Nullable[str]
@@ -38,7 +38,7 @@ class TransactionVoid(BaseModel):
38
38
  raw_response_description: Nullable[str]
39
39
  r"""This is the response description received from the payment service. This can be set to any value and is not standardized across different payment services."""
40
40
 
41
- transaction: Transaction
41
+ transaction: TransactionOutput
42
42
  r"""A full transaction resource."""
43
43
 
44
44
  TYPE: Annotated[
@@ -1,8 +1,11 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from .transaction import Transaction, TransactionTypedDict
5
- from .transactionvoid import TransactionVoid, TransactionVoidTypedDict
4
+ from .transaction_output import TransactionOutput, TransactionOutputTypedDict
5
+ from .transactionvoid_output import (
6
+ TransactionVoidOutput,
7
+ TransactionVoidOutputTypedDict,
8
+ )
6
9
  from gr4vy.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
7
10
  from gr4vy.utils import FieldMetadata, HeaderMetadata, PathParamMetadata
8
11
  import pydantic
@@ -86,12 +89,12 @@ class VoidTransactionRequest(BaseModel):
86
89
 
87
90
  ResponseVoidTransactionTypedDict = TypeAliasType(
88
91
  "ResponseVoidTransactionTypedDict",
89
- Union[TransactionVoidTypedDict, TransactionTypedDict],
92
+ Union[TransactionVoidOutputTypedDict, TransactionOutputTypedDict],
90
93
  )
91
94
  r"""Successful Response"""
92
95
 
93
96
 
94
97
  ResponseVoidTransaction = TypeAliasType(
95
- "ResponseVoidTransaction", Union[TransactionVoid, Transaction]
98
+ "ResponseVoidTransaction", Union[TransactionVoidOutput, TransactionOutput]
96
99
  )
97
100
  r"""Successful Response"""
gr4vy/transactions.py CHANGED
@@ -783,11 +783,12 @@ class Transactions(BaseSDK):
783
783
  supplier_order_number: OptionalNullable[str] = UNSET,
784
784
  duty_amount: OptionalNullable[int] = UNSET,
785
785
  shipping_amount: OptionalNullable[int] = UNSET,
786
+ integration_client: OptionalNullable[models.IntegrationClient] = UNSET,
786
787
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
787
788
  server_url: Optional[str] = None,
788
789
  timeout_ms: Optional[int] = None,
789
790
  http_headers: Optional[Mapping[str, str]] = None,
790
- ) -> models.Transaction:
791
+ ) -> models.TransactionOutput:
791
792
  r"""Create transaction
792
793
 
793
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.
@@ -832,6 +833,7 @@ class Transactions(BaseSDK):
832
833
  :param supplier_order_number: The merchant's unique identifier for the sales order or invoice.
833
834
  :param duty_amount: Total charges for import/export duties.
834
835
  :param shipping_amount: Total shipping amount.
836
+ :param integration_client: Defines the client where the session for this transaction is going to be used. Please refer to the connections documentation for more guidance.
835
837
  :param retries: Override the default retry configuration for this method
836
838
  :param server_url: Override the default server URL for this method
837
839
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -911,6 +913,7 @@ class Transactions(BaseSDK):
911
913
  supplier_order_number=supplier_order_number,
912
914
  duty_amount=duty_amount,
913
915
  shipping_amount=shipping_amount,
916
+ integration_client=integration_client,
914
917
  ),
915
918
  )
916
919
 
@@ -980,7 +983,7 @@ class Transactions(BaseSDK):
980
983
 
981
984
  response_data: Any = None
982
985
  if utils.match_response(http_res, "201", "application/json"):
983
- return unmarshal_json_response(models.Transaction, http_res)
986
+ return unmarshal_json_response(models.TransactionOutput, http_res)
984
987
  if utils.match_response(http_res, "400", "application/json"):
985
988
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
986
989
  raise errors.Error400(response_data, http_res)
@@ -1097,11 +1100,12 @@ class Transactions(BaseSDK):
1097
1100
  supplier_order_number: OptionalNullable[str] = UNSET,
1098
1101
  duty_amount: OptionalNullable[int] = UNSET,
1099
1102
  shipping_amount: OptionalNullable[int] = UNSET,
1103
+ integration_client: OptionalNullable[models.IntegrationClient] = UNSET,
1100
1104
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1101
1105
  server_url: Optional[str] = None,
1102
1106
  timeout_ms: Optional[int] = None,
1103
1107
  http_headers: Optional[Mapping[str, str]] = None,
1104
- ) -> models.Transaction:
1108
+ ) -> models.TransactionOutput:
1105
1109
  r"""Create transaction
1106
1110
 
1107
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.
@@ -1146,6 +1150,7 @@ class Transactions(BaseSDK):
1146
1150
  :param supplier_order_number: The merchant's unique identifier for the sales order or invoice.
1147
1151
  :param duty_amount: Total charges for import/export duties.
1148
1152
  :param shipping_amount: Total shipping amount.
1153
+ :param integration_client: Defines the client where the session for this transaction is going to be used. Please refer to the connections documentation for more guidance.
1149
1154
  :param retries: Override the default retry configuration for this method
1150
1155
  :param server_url: Override the default server URL for this method
1151
1156
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1225,6 +1230,7 @@ class Transactions(BaseSDK):
1225
1230
  supplier_order_number=supplier_order_number,
1226
1231
  duty_amount=duty_amount,
1227
1232
  shipping_amount=shipping_amount,
1233
+ integration_client=integration_client,
1228
1234
  ),
1229
1235
  )
1230
1236
 
@@ -1294,7 +1300,7 @@ class Transactions(BaseSDK):
1294
1300
 
1295
1301
  response_data: Any = None
1296
1302
  if utils.match_response(http_res, "201", "application/json"):
1297
- return unmarshal_json_response(models.Transaction, http_res)
1303
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1298
1304
  if utils.match_response(http_res, "400", "application/json"):
1299
1305
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1300
1306
  raise errors.Error400(response_data, http_res)
@@ -1351,7 +1357,7 @@ class Transactions(BaseSDK):
1351
1357
  server_url: Optional[str] = None,
1352
1358
  timeout_ms: Optional[int] = None,
1353
1359
  http_headers: Optional[Mapping[str, str]] = None,
1354
- ) -> models.Transaction:
1360
+ ) -> models.TransactionOutput:
1355
1361
  r"""Get transaction
1356
1362
 
1357
1363
  Retrieve the details of a transaction by its unique identifier.
@@ -1441,7 +1447,7 @@ class Transactions(BaseSDK):
1441
1447
 
1442
1448
  response_data: Any = None
1443
1449
  if utils.match_response(http_res, "200", "application/json"):
1444
- return unmarshal_json_response(models.Transaction, http_res)
1450
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1445
1451
  if utils.match_response(http_res, "400", "application/json"):
1446
1452
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1447
1453
  raise errors.Error400(response_data, http_res)
@@ -1498,7 +1504,7 @@ class Transactions(BaseSDK):
1498
1504
  server_url: Optional[str] = None,
1499
1505
  timeout_ms: Optional[int] = None,
1500
1506
  http_headers: Optional[Mapping[str, str]] = None,
1501
- ) -> models.Transaction:
1507
+ ) -> models.TransactionOutput:
1502
1508
  r"""Get transaction
1503
1509
 
1504
1510
  Retrieve the details of a transaction by its unique identifier.
@@ -1588,7 +1594,7 @@ class Transactions(BaseSDK):
1588
1594
 
1589
1595
  response_data: Any = None
1590
1596
  if utils.match_response(http_res, "200", "application/json"):
1591
- return unmarshal_json_response(models.Transaction, http_res)
1597
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1592
1598
  if utils.match_response(http_res, "400", "application/json"):
1593
1599
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1594
1600
  raise errors.Error400(response_data, http_res)
@@ -1653,7 +1659,7 @@ class Transactions(BaseSDK):
1653
1659
  server_url: Optional[str] = None,
1654
1660
  timeout_ms: Optional[int] = None,
1655
1661
  http_headers: Optional[Mapping[str, str]] = None,
1656
- ) -> models.Transaction:
1662
+ ) -> models.TransactionOutput:
1657
1663
  r"""Manually update a transaction
1658
1664
 
1659
1665
  Manually updates a transaction.
@@ -1757,7 +1763,7 @@ class Transactions(BaseSDK):
1757
1763
 
1758
1764
  response_data: Any = None
1759
1765
  if utils.match_response(http_res, "200", "application/json"):
1760
- return unmarshal_json_response(models.Transaction, http_res)
1766
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1761
1767
  if utils.match_response(http_res, "400", "application/json"):
1762
1768
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1763
1769
  raise errors.Error400(response_data, http_res)
@@ -1822,7 +1828,7 @@ class Transactions(BaseSDK):
1822
1828
  server_url: Optional[str] = None,
1823
1829
  timeout_ms: Optional[int] = None,
1824
1830
  http_headers: Optional[Mapping[str, str]] = None,
1825
- ) -> models.Transaction:
1831
+ ) -> models.TransactionOutput:
1826
1832
  r"""Manually update a transaction
1827
1833
 
1828
1834
  Manually updates a transaction.
@@ -1926,7 +1932,7 @@ class Transactions(BaseSDK):
1926
1932
 
1927
1933
  response_data: Any = None
1928
1934
  if utils.match_response(http_res, "200", "application/json"):
1929
- return unmarshal_json_response(models.Transaction, http_res)
1935
+ return unmarshal_json_response(models.TransactionOutput, http_res)
1930
1936
  if utils.match_response(http_res, "400", "application/json"):
1931
1937
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1932
1938
  raise errors.Error400(response_data, http_res)
@@ -2891,7 +2897,7 @@ class Transactions(BaseSDK):
2891
2897
  server_url: Optional[str] = None,
2892
2898
  timeout_ms: Optional[int] = None,
2893
2899
  http_headers: Optional[Mapping[str, str]] = None,
2894
- ) -> models.Transaction:
2900
+ ) -> models.TransactionOutput:
2895
2901
  r"""Sync transaction
2896
2902
 
2897
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.
@@ -2977,7 +2983,7 @@ class Transactions(BaseSDK):
2977
2983
 
2978
2984
  response_data: Any = None
2979
2985
  if utils.match_response(http_res, "200", "application/json"):
2980
- return unmarshal_json_response(models.Transaction, http_res)
2986
+ return unmarshal_json_response(models.TransactionOutput, http_res)
2981
2987
  if utils.match_response(http_res, "400", "application/json"):
2982
2988
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
2983
2989
  raise errors.Error400(response_data, http_res)
@@ -3034,7 +3040,7 @@ class Transactions(BaseSDK):
3034
3040
  server_url: Optional[str] = None,
3035
3041
  timeout_ms: Optional[int] = None,
3036
3042
  http_headers: Optional[Mapping[str, str]] = None,
3037
- ) -> models.Transaction:
3043
+ ) -> models.TransactionOutput:
3038
3044
  r"""Sync transaction
3039
3045
 
3040
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.
@@ -3120,7 +3126,7 @@ class Transactions(BaseSDK):
3120
3126
 
3121
3127
  response_data: Any = None
3122
3128
  if utils.match_response(http_res, "200", "application/json"):
3123
- return unmarshal_json_response(models.Transaction, http_res)
3129
+ return unmarshal_json_response(models.TransactionOutput, http_res)
3124
3130
  if utils.match_response(http_res, "400", "application/json"):
3125
3131
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
3126
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.5.6
3
+ Version: 1.7.1
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Gr4vy
6
6
  Requires-Python: >=3.9.2
@@ -749,8 +749,8 @@ import os
749
749
 
750
750
 
751
751
  with Gr4vy(
752
- server="production",
753
- id="<id>"
752
+ server="sandbox",
753
+ id="example",
754
754
  merchant_account_id="default",
755
755
  bearer_auth=os.getenv("GR4VY_BEARER_AUTH", ""),
756
756
  ) as g_client:
@@ -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=Peat8JoHpya0V4SI8OtSvrgtHQA_L-AZbsxL9VQlyKM,454
5
+ gr4vy/_version.py,sha256=UNoIWmq-I3F0P8o_qT22yFMY2fs8p0DbLWmXt-3JLUY,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
@@ -14,7 +14,7 @@ gr4vy/buyers_payment_methods.py,sha256=K6rwQM7c8TgjwYO97sHe4XmYrcWmHJ8FUWJMTs9tt
14
14
  gr4vy/buyers_sdk.py,sha256=6akr8Xr7QdyQ3tTz9lF4BR4GKyt-6lHlVCOOYw-FIFI,73614
15
15
  gr4vy/buyers_shipping_details.py,sha256=8Sd5_cRQYm4fXpQHkOhma87rF-tuzGOpbDJKXQ-LZtE,73297
16
16
  gr4vy/card_scheme_definitions_sdk.py,sha256=s3pLvYyofq-okz88ze9vZIHKgX06vy4uvBviLyuus4Q,13643
17
- gr4vy/checkout_sessions.py,sha256=Wmpb4_DLms5gfDnWQwcFsWSVkaree0fISQDWAqur5R8,57146
17
+ gr4vy/checkout_sessions.py,sha256=G4wG5_DXGrCSMLp3f_PKTuzd-ASdONeSWgzj_qox77I,58492
18
18
  gr4vy/digital_wallets_sdk.py,sha256=Z91FxlJVqJ0-__eM7J0XSv_4kUmx-7KW8McKyfnIxEU,71131
19
19
  gr4vy/domains.py,sha256=TxljWTn-RodSg5Ey0aXzOLa08v8gCGAMooSxx8nQiSw,28472
20
20
  gr4vy/errors/__init__.py,sha256=ZDz7v86-UM-FLysIfPwSWRu-TH_1Xfu8xo8SCpVeFY8,3697
@@ -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=JiCvYybQeZVf9BRUhNve7w8nQgoFY81dmI72_YAHLj8,132944
43
+ gr4vy/models/__init__.py,sha256=gq-HCArQKJYp_wpAeEWIJY_oP0D2NGkEg_1jsxUcBCo,135805
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
97
- gr4vy/models/checkoutsessioncreate.py,sha256=-anN5QD3pAsvD4TBdUpKgp105_tAQ-qPwYoGDsupWH0,3043
98
- gr4vy/models/checkoutsessionpaymentmethod.py,sha256=f1Gwael0Ka0SRVOG1-SLMysxAKuK1SpshuPOPIuyIuM,3489
96
+ gr4vy/models/checkoutsession.py,sha256=pgqhwelO1pWIw4RuYQr1vDmNbk8Yq2E9Ec3wnscOr9Q,5433
97
+ gr4vy/models/checkoutsessioncreate.py,sha256=HDav30XrLnQLV0VQXs-GZELW2u8qd-A6fXBkQL6CgfU,4323
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
@@ -160,7 +160,7 @@ gr4vy/models/fiservinstallmentoptions.py,sha256=gkEIrbECotEMSZ1uzjxQ-q6CM1q6s_0P
160
160
  gr4vy/models/fiservoptions.py,sha256=vrA5y1DRsVbFFZ3y1f3y9XZWahrPtAPa0uYr-dZ5Xf0,1885
161
161
  gr4vy/models/forterantifraudoptions.py,sha256=ZdH4nFBPoFiCzpXGcge1s9aAeK0fSqqXuzkxXQ-uOR8,3457
162
162
  gr4vy/models/forterantifraudoptionscartitem.py,sha256=Pp0YWzKCgwMM_RyZVyFd2q9vwNWQJ8cZsr6yJW3lfcM,2923
163
- gr4vy/models/forterantifraudoptionscartitembasicitemdata.py,sha256=_uwQEgi6aBv-RYzir9DVpadzzdmpNKWMg6HHXPRAPP0,1935
163
+ gr4vy/models/forterantifraudoptionscartitembasicitemdata.py,sha256=MZ-FP7_7VN49N1f3SjXUyExUHAqzKKm-biLs7i-NTWo,2073
164
164
  gr4vy/models/forterantifraudoptionscartitembeneficiary.py,sha256=NaS2eNRglddg4YQctkjZlg6TNCWHry92W59Y0x7heLU,3258
165
165
  gr4vy/models/forterantifraudoptionscartitembeneficiaryaddress.py,sha256=GOEOm7F2fTEkUpDWs4cSlPgDNMTJXw6LMqCNLkxjiG8,2751
166
166
  gr4vy/models/forterantifraudoptionscartitembeneficiarycomments.py,sha256=CT2Bql-VBK_ovcoUVN5I4MsmPVVccgg1aIrbWZeU8Rg,2252
@@ -210,7 +210,8 @@ gr4vy/models/googlepaysession.py,sha256=J3X3bI5ZxiFEUAT6lmdlcyddRpu5kIdgwkPSofVv
210
210
  gr4vy/models/googlepaysessionrequest.py,sha256=Z5kTOUSN707Xz9urjaqfhRwW1oRRbnlzv1Wcj6yXTw0,443
211
211
  gr4vy/models/guestbuyer_input.py,sha256=PhJnN3DMRqd6Lc-_JPLjHVHn0lxT_cez86OdLGLwDTQ,2877
212
212
  gr4vy/models/guestbuyer_output.py,sha256=fDSHUtYbZsVoI0Od3Lzxzp6wA-4TrKwHHGGt8aMuTQo,2884
213
- gr4vy/models/instrumenttype.py,sha256=cPt9UC0QeqeC2EXKJJD0x8t27OS6lQsnRZ22IGUdf_g,400
213
+ gr4vy/models/instrumenttype.py,sha256=DDaZFmoRSwtiIZy2oEeI28OiIjgxu6qqXlMH-rVv3II,417
214
+ gr4vy/models/integrationclient.py,sha256=9qpWCQeXSlxMfoKLztNNS5saX0h9EjW36LMAlFXjPyQ,323
214
215
  gr4vy/models/internal/__init__.py,sha256=xowceJVTVAP3WRyQ0NEGkm9PAoYU1l0_VYgXZP0ZvlM,1569
215
216
  gr4vy/models/internal/globals.py,sha256=LOin0ZxkLmWMhPRtR0I9rutYwe8KvZ4c-yJyfv9A8Qw,755
216
217
  gr4vy/models/latitudeoptions.py,sha256=dswG3n30p01I1F7R49WvUvu6WSCdQUw0E47ipuWgKds,1546
@@ -250,6 +251,7 @@ gr4vy/models/method.py,sha256=PeFQTe1h7lzAhItGwkNbvz6hAamxzg0Rb8FAZb8FxiU,2287
250
251
  gr4vy/models/mockcardmerchantadvicecodeoptions.py,sha256=iV3cPCx-BvQDqyUGp1LivqPDXUbEYDzzJ1lgChMYPMI,1759
251
252
  gr4vy/models/mockcardoptions.py,sha256=6RLlkJrLU42bwd7u-8uonYSlQbwXYGytQk64wypM48o,1743
252
253
  gr4vy/models/mode.py,sha256=cQZmYttnqdrH3yZkXN13nJ0XfR5u8mb3ZCB2GtTcUUw,407
254
+ gr4vy/models/monatospeioptions.py,sha256=TPiuqJX8LgzRCF_0XaADGaav2xoRuvWqkLa4QV8N7B4,465
253
255
  gr4vy/models/networktoken.py,sha256=oHxWBWhKz31He-MvuZj4lExlijNAXEGzKEUbrwYoizc,2027
254
256
  gr4vy/models/networktokencreate.py,sha256=amNEfXC0wLIrtn6vSS_IsDnRXeziIqvhtItPY9QPbds,2012
255
257
  gr4vy/models/networktokenpaymentmethodcreate.py,sha256=07GKq4ucvNLyTBuHoOMKCphxEgMOzt4fpWISg5hWZrw,4356
@@ -259,7 +261,7 @@ gr4vy/models/nuveiairlinedataoptions.py,sha256=LRvIzboyvbAK83iIxfkDDLfspgA2hB04i
259
261
  gr4vy/models/nuveioptions.py,sha256=ms46xui6MunqvGv_SK9S1Q7VQo1UI0hju2kqjUFNeRE,2063
260
262
  gr4vy/models/nuveipseoptions.py,sha256=0CtBMe2cxU6XToQamYy25jCD0rMAl2Ko2KETtNyta1Q,2426
261
263
  gr4vy/models/oxxooptions.py,sha256=UjdEwwdwr-N7b8_3gwE1rgxjmfadQRghk9vzZmS4uPU,1910
262
- gr4vy/models/paymentlink.py,sha256=CH3JroLJo8G2i7C2Ei4E1xbToQ7I9v_SWyVcd7VrSRM,8380
264
+ gr4vy/models/paymentlink.py,sha256=o7wzhlnRJHjqVUn2Q5yPhE-pj6UlVICgbPpSDeAjZf0,8424
263
265
  gr4vy/models/paymentlinkcreate.py,sha256=3Dz1vIn7r5Q7Td7mZS_yTJqthIOAIfV-jDdmBhMzrHs,7154
264
266
  gr4vy/models/paymentlinks.py,sha256=i7Sj7x18rY5HR-E_LkinvTpVjnl8aCMCldQJFXnV9Lk,2175
265
267
  gr4vy/models/paymentlinkstatus.py,sha256=e09HkfXNZDZSN_lkHCyiW7IaI-8JtM-_UmSOQ_im7ZE,334
@@ -269,17 +271,17 @@ gr4vy/models/paymentmethoddetailscard.py,sha256=FH5LZkKpXm-GMJ6tLH4-WMEtW6syYOFi
269
271
  gr4vy/models/paymentmethods.py,sha256=KYpooSk-VfLJYror_5N7Y8CECdK3VOBRS20sJQMZucc,2189
270
272
  gr4vy/models/paymentmethodstatus.py,sha256=yLhYIXrB7m2i8_NNx6uX-mN2VQN_3eIEHVqKxclw0pU,370
271
273
  gr4vy/models/paymentmethodstoredcard.py,sha256=-eJedn0lPGka3ChipisusyadKcF_vaUYtOJIVfnKJAo,829
272
- gr4vy/models/paymentmethodsummaries.py,sha256=IFAC3w_TIQJbIyebLaotn91QzGyeuyWwAWKgBTzaZ9Q,580
273
- gr4vy/models/paymentmethodsummary.py,sha256=pNYYUbuvjn-d4T5Quuf0o3lWVnrmctkxoKOEQXuX6AA,8104
274
- gr4vy/models/paymentoption.py,sha256=s2ErG1kVt3PWh819Ufykb6x-CsC0SUmZVDi49ETlVys,3028
274
+ gr4vy/models/paymentmethodsummaries.py,sha256=blEV6yHcHbf4CsYZg0uYHCX2hOvQ6cUD7Xub5RlSbyU,624
275
+ gr4vy/models/paymentmethodsummary_output.py,sha256=1RyXjema_ZfO_nPbe_uOwBPyZIIaNcoZHeLR90_UgNw,8116
276
+ gr4vy/models/paymentoption_output.py,sha256=6iQ4jMxi8-S4ThXvKvP4u_7G0AHeJnS4YP2qOAmg96c,3040
275
277
  gr4vy/models/paymentoptioncontext.py,sha256=WuNiu2A5LB0RnbFyAPnpDn-mtmrKnW8CkTbWDQK2z2k,2365
276
278
  gr4vy/models/paymentoptioncontextapprovalui.py,sha256=4Z7EOMtSOVkZdWq9lypc7DuXYRv49chHTCoCc-TN-dQ,1482
277
279
  gr4vy/models/paymentoptionrequest.py,sha256=VwgQt4ZWnD8h4LXOlXRrgTTvKvg3QPfSTdnMqPVLFNQ,3581
278
- gr4vy/models/paymentoptions.py,sha256=UBO33M1pUufA36vL2mck8riIKni1lKBFUkT_EgsjLpQ,529
280
+ gr4vy/models/paymentoptions.py,sha256=5yTJP5r1SQkh5ea1BN3AdpurnQf4H5EL33Qe6gLBYO4,560
279
281
  gr4vy/models/paymentservice.py,sha256=zKIX8C4gPAR-cJglDxcezutICt2nKdK7mERaYhsvq84,8019
280
282
  gr4vy/models/paymentserviceconfiguration.py,sha256=wD-SYLJsaKafJwlfLvEJgp3fh7tcTy6J1kZ40mtvxMI,1731
281
283
  gr4vy/models/paymentservicecreate.py,sha256=OTOwuJmTD5wavfDcIdNQS-LY5xiJORDuk6eMYFJetU0,5930
282
- gr4vy/models/paymentservicedefinition.py,sha256=kiqXkni1gnX58AQe9x61U9B-O7xmRBsn7im17dEo4Fg,4728
284
+ gr4vy/models/paymentservicedefinition.py,sha256=WGeRdOKpc9mGof7FXdVwhsuE2jn0LsvihB1FqEBlUJk,5219
283
285
  gr4vy/models/paymentservicedefinitions.py,sha256=S_TgLdNAolpMAS9RjTc2bDQO__gxi9LhvUe6CzWNsaE,2279
284
286
  gr4vy/models/paymentservices.py,sha256=5bhZVK6sSWBxDD6IhbXlCLIOctd50Gk3xPyGdowJMTw,2196
285
287
  gr4vy/models/paymentservicestatus.py,sha256=tKYRuNd4ix9d5dRfOlRZChHKDkHgGKac-k2IYe3Pa8Y,313
@@ -295,8 +297,12 @@ gr4vy/models/payoutmerchantsummary.py,sha256=BZFrzFYEQwZ5cAsUK_YbTvFZGgAc0oTcvza
295
297
  gr4vy/models/payoutpaymentservice.py,sha256=hdY8gf6uG9GHxBKve9OatNiRoKSCsoDClGlvJua0Zkg,2653
296
298
  gr4vy/models/payoutstatus.py,sha256=noJUkRfZ4ShNUbU9Lo1c8x5UzPVy3bselJ3-fcN_yKM,327
297
299
  gr4vy/models/payoutsummaries.py,sha256=n9rCKfAKn77Cyvy8WCfkKtCTI-wDxSJNraJBqT_RnV8,2191
298
- gr4vy/models/payoutsummary.py,sha256=qnx3ShxDXmkKk8LXgGDtVatyxPqPjXneYarXGK_AiOQ,5435
299
- gr4vy/models/paypaloptions.py,sha256=NIFg4LSHHC0V0SOFvJ6Q5ya3WtzFLeqNKYNt2mIK9oQ,1666
300
+ gr4vy/models/payoutsummary.py,sha256=7CSo5GuIG2x3jkw9-WqHA2ZIxNBATIpFFsa18puSh2Y,5510
301
+ gr4vy/models/paypaloptions.py,sha256=aY81ZsVtUgXnGmzSxWoHI3KhMs-_gCZpA6hjbS7sFB8,2038
302
+ gr4vy/models/paypalshippingoptions.py,sha256=85pRPBHzUzhNnoF8sFRjaQ2d64-hIXr-AMDj6z1FUZQ,1787
303
+ gr4vy/models/paypalshippingoptionsitem.py,sha256=Q09suxnZ3fIxUpOuyGpNljfPfFKoq82V0L0-Wyt7rSI,3424
304
+ gr4vy/models/paypalshippingoptionsitemamount.py,sha256=YuROvTE2ngGuHajoRnIRY3NwSr3mtADnHes3Xao2llA,608
305
+ gr4vy/models/plaidpaymentmethodcreate.py,sha256=toULZY1sWb-7gqsUaCI2h1MjeNOpM7QovBYG0_O9MTo,3581
300
306
  gr4vy/models/powertranzoptions.py,sha256=ZJAZVTggH_fMMwvMlNvJGe0RpLcASaWBmH5Ln7SgxrU,1692
301
307
  gr4vy/models/producttype.py,sha256=qsHybq-2rssJDt3greV0fng-wnHKVaFWGMvf3-52u70,418
302
308
  gr4vy/models/recipient.py,sha256=ORw0V4wDt3ytidIDj0Dmut92naYoRkMznh0LKuK17Rs,2568
@@ -345,19 +351,19 @@ gr4vy/models/threedsecuremethod.py,sha256=SZYNn4TSu2K_-VE458NaWtNpNZl1Y8WFJFQwMu
345
351
  gr4vy/models/threedsecurestatus.py,sha256=ok7YxtoF76wJY9htTMKVmZqGWwDkVQPdFs3lEoIg9eI,356
346
352
  gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
347
353
  gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
348
- gr4vy/models/transaction.py,sha256=kVgmE9-cM9ONveiuPhEi1PSGXlLexVJmtmeCrwpif-A,24655
349
- gr4vy/models/transactionbuyer.py,sha256=7VxBYmR7IBNA082NqCCdwWtOjyK9ut5dPS4M-6rVHjE,3074
350
- gr4vy/models/transactioncancel.py,sha256=OHP0xmmM374aaYXPeV0G2fZn5RRfxbTAzJnNospfCas,3162
351
- gr4vy/models/transactioncapture.py,sha256=7WD3uoUyDJ1sejtjIb7b5B5BFtpKEi7KkegVtB0DLTg,3174
354
+ gr4vy/models/transaction_output.py,sha256=-DawGogoCY_MMM_jHC__Cc8tsbTr7dlBV3iZGcny7Z4,25123
355
+ gr4vy/models/transactionbuyer_output.py,sha256=JGUni3lVy6ERIgzFP81RpjMJpfjdc19-O126OMb8QjM,3086
356
+ gr4vy/models/transactioncancel.py,sha256=KIptVtqlwZmoWhB0XgjJfNJS6u1q9Y8o2OH8Mq-zFWM,3193
357
+ gr4vy/models/transactioncapture_output.py,sha256=PIMt4SUkooYkZKt5k15Z-CdXHu3RBCL9Uez5RaOqEn4,3217
352
358
  gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
353
- gr4vy/models/transactionconnectionoptions.py,sha256=w0hd7aV9Byy8BrN8qhSbygoiafOzX3A8q9tMZ95WMTI,19123
354
- gr4vy/models/transactioncreate.py,sha256=nrS_YJpqNaa-Om-8AnXzSOG_wKNp0TH79umQwE1fXXE,26445
355
- gr4vy/models/transactionevent.py,sha256=rZm6VX53piqFWSMMP1rLsRqV2rw6_5J7BHrUt4Nfh2M,3871
356
- gr4vy/models/transactionevents.py,sha256=5l2Yc69SMePDlFtcby4i3BxGBkbT62SWQf4X5Xvfypw,2210
359
+ gr4vy/models/transactionconnectionoptions.py,sha256=BSfmMz1cKRHuDvM4JAR-3UMCw8deGVJfraSpxj1Vc2I,19587
360
+ gr4vy/models/transactioncreate.py,sha256=jOCtjiWbnIYDHyrSFC5LUdpwGosFdJppzLgoz039QM4,27262
361
+ gr4vy/models/transactionevent_output.py,sha256=Hj_pdhLQ-pgm3f6nD9NR9GLXKQRn0o3F80_29zMN8T8,3883
362
+ gr4vy/models/transactionevents.py,sha256=BIzlBBLSuci0j_k_HjJaK1QpKBhuqZkkaq1zbPHG6x0,2254
357
363
  gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
358
364
  gr4vy/models/transactionintent.py,sha256=RS4C1XxvLSJqHF9iBtyvX5y6kCHOqlcUz7MTQuyMSM8,294
359
365
  gr4vy/models/transactionintentoutcome.py,sha256=0-TNOB-W2uMH3keCtiMLwz2ettqYXu6swb10yRpVFiY,319
360
- gr4vy/models/transactionpaymentmethod.py,sha256=_uZqRH1cLCoyJPU6an26k27DFWMsNyGeG0HQlyybBx0,7424
366
+ gr4vy/models/transactionpaymentmethod_output.py,sha256=Y_Rh9NCMWSdT0V_K8Gei1jDLn2t3ZUMIeIJvvaKuYGE,7436
361
367
  gr4vy/models/transactionpaymentservice.py,sha256=kBS56vZtxCtiX37gxpTVlBzIkmUIa-ppJHPpiQRMM-s,1428
362
368
  gr4vy/models/transactionpaymentsource.py,sha256=OdbWCrAuSIrIf8dwQ4WqlOl6J9Y6EQ3I5Rs-YxfrFxY,437
363
369
  gr4vy/models/transactionrefundallcreate.py,sha256=EUachxUB50TDFFKeTzl9OmPatOCwISTKS0mFE83XgwI,1882
@@ -365,11 +371,11 @@ gr4vy/models/transactionrefundcreate.py,sha256=mmK7NsYYFbgPg-0FiJjsHlmGBl_KesQuS
365
371
  gr4vy/models/transactionretriesreportspec.py,sha256=PUnfQb7ILdp1spWV_Fo9XgbTND7oH1RVx31nZO66_40,1004
366
372
  gr4vy/models/transactionsreportspec.py,sha256=e1yggg1lXLVMavufoIlbzS9T3k9Hdv6iJj5qKzRlj4c,950
367
373
  gr4vy/models/transactionstatus.py,sha256=pYWF680-mTUHe6WfzEBhgxxBn_TK8qEln-4hPD-PeCw,537
368
- gr4vy/models/transactionsummaries.py,sha256=WiOtmYDPjsKJL3dYiyIifsLtAI0wyAFwWNSsrIbyljg,2226
369
- gr4vy/models/transactionsummary.py,sha256=mv9GfyZIgsygR4_IxFwYHNWaOirgeQGfwC9VdknjKow,12022
370
- gr4vy/models/transactionthreedsecuresummary.py,sha256=rRFrtiW0auNHauNBNDlIkDd1WfoiTCAEFtg1W7BLoIg,5383
374
+ gr4vy/models/transactionsummaries.py,sha256=dlwVidOsTcS3FEfybBJYrDzC1LqyjN1tTJVUc2Jv8tc,2270
375
+ gr4vy/models/transactionsummary_output.py,sha256=QuIuDuUuyNAze6M1xqWXmM6TQJy0FTpEXciG2tDk4L0,12109
376
+ gr4vy/models/transactionthreedsecuresummary_output.py,sha256=Nc_OvGh_jAVpOs8k_aDFSDb8YMPojEUzNiFgpAmpsBY,5395
371
377
  gr4vy/models/transactionupdate.py,sha256=BnCR-1aNA40v0L0ayps0NtiSSclYh6Zhvi4Py1GWmY0,3514
372
- gr4vy/models/transactionvoid.py,sha256=z0Rk_1Yrq9zT79UDbJt7OyG_fILUHCcY0p0C9b5Si70,3138
378
+ gr4vy/models/transactionvoid_output.py,sha256=ECuKhDMzfPaB-q8UmmtO1LYL9l0rrQ1WYpY87kLekFc,3181
373
379
  gr4vy/models/travelhubcustomdata.py,sha256=qVMavG75E8LRhu-FlNNuu_I863VWYCUp29XH7NjOlqk,1690
374
380
  gr4vy/models/travelhuboptions.py,sha256=KAg0lkauHtpiwRueJWqzpp9T2Dh1EiVgU4cF8PAkqIg,2062
375
381
  gr4vy/models/trustlyoptions.py,sha256=e0_PJTkNYqO5WE1d7qz9WaveM53xcuOXjqKmXCfSyKg,1927
@@ -386,7 +392,7 @@ gr4vy/models/userstatus.py,sha256=bmlF_Mt656z9o2ibhQ5_dohFs6nEKsuAoNdToCe4vE4,30
386
392
  gr4vy/models/validationerror.py,sha256=4wRWnXDL-O7GxCdKzmEuWyv-xTywx124gpf65A1OyVc,522
387
393
  gr4vy/models/verify_payment_service_credentialsop.py,sha256=IEO3QA3Nn6n-EcfuovKKr5Y-WFJfnU0lxRSvwJ-F7Yc,1623
388
394
  gr4vy/models/verifycredentials.py,sha256=M4VoMBhJxmtTf9LXiL_7v3K6y5Gte-H3YGGpkIqB_n8,2278
389
- gr4vy/models/void_transactionop.py,sha256=w9b7eWXsFC_auWkQjKDo348Y8RvZEu-yoEXqWRHyUys,3309
395
+ gr4vy/models/void_transactionop.py,sha256=neqJjtbAtl3BGcDQiC3gAJhkiPbQ9mjrgzzBXeESEuI,3384
390
396
  gr4vy/models/voidablefield.py,sha256=uApDDXV7oryN_PtHh1YH7dhBpFtPF4t5UqYzO4Hf1Sk,316
391
397
  gr4vy/models/voidstatus.py,sha256=d1Xfuz1p1H3zCg11TWn-SPHxtULvy8HjmSKbGIHGW78,325
392
398
  gr4vy/models/walletpaymentoptioncontext.py,sha256=aQfoRvTnYyNzpJfgpXvkoPbpUZGGEHg0ERjQq3udmCk,422
@@ -410,7 +416,7 @@ gr4vy/reports_sdk.py,sha256=S7SF4TvPf8DEBMjh9flsDBgfM76Nf-GQzQ3950_7aDI,59641
410
416
  gr4vy/sdk.py,sha256=2hfDkFfqPXyFR8w4J0joQrk_5xirotLtFrRYu5glAq4,10519
411
417
  gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
412
418
  gr4vy/sessions.py,sha256=xuP2ijGiew7R9Ei4HxGSyysPl_dJ6O_TaKLuLPmnxZU,41621
413
- gr4vy/transactions.py,sha256=yGMQ8byhhFONoUZ1HAGD1poLF6kTCMowOMCnnSdoabM,168119
419
+ gr4vy/transactions.py,sha256=hJDcDis6LPQH0YKljgtQ7ZQzs4DVHqh2VW7eVBHWGxU,168843
414
420
  gr4vy/transactions_refunds.py,sha256=lpOVupveezk8vzXI8CMUIUV2b889wYYvT4kF42KQU-M,43603
415
421
  gr4vy/transactions_settlements.py,sha256=IHzgj9udsM2xA_-bsjGgnKy8Wo4FDqRoHbCipTZR8uw,27758
416
422
  gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
@@ -433,6 +439,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
433
439
  gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
434
440
  gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
435
441
  gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
436
- gr4vy-1.5.6.dist-info/METADATA,sha256=IOy_W26HKubRqk3V7aKMdI8alRwihmd_OWaiHE10ohw,44091
437
- gr4vy-1.5.6.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
438
- gr4vy-1.5.6.dist-info/RECORD,,
442
+ gr4vy-1.7.1.dist-info/METADATA,sha256=GwZRZM1ab4XZm9gFF7uh1tl7J2ZXT8NWvIWykh-aeKc,44092
443
+ gr4vy-1.7.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
444
+ gr4vy-1.7.1.dist-info/RECORD,,
File without changes