gr4vy 1.7.10__py3-none-any.whl → 1.7.14__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/create_payment_methodop.py +2 -2
- gr4vy/models/plaidpaymentmethodcreate.py +7 -0
- gr4vy/models/transactioncreate.py +2 -2
- {gr4vy-1.7.10.dist-info → gr4vy-1.7.14.dist-info}/METADATA +1 -1
- {gr4vy-1.7.10.dist-info → gr4vy-1.7.14.dist-info}/RECORD +7 -7
- {gr4vy-1.7.10.dist-info → gr4vy-1.7.14.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.7.
|
|
6
|
+
__version__: str = "1.7.14"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
8
|
__gen_version__: str = "2.753.1"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.7.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.7.14 2.753.1 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -42,8 +42,8 @@ BodyTypedDict = TypeAliasType(
|
|
|
42
42
|
"BodyTypedDict",
|
|
43
43
|
Union[
|
|
44
44
|
CheckoutSessionPaymentMethodCreateTypedDict,
|
|
45
|
-
PlaidPaymentMethodCreateTypedDict,
|
|
46
45
|
RedirectPaymentMethodCreateTypedDict,
|
|
46
|
+
PlaidPaymentMethodCreateTypedDict,
|
|
47
47
|
CardPaymentMethodCreateTypedDict,
|
|
48
48
|
],
|
|
49
49
|
)
|
|
@@ -53,8 +53,8 @@ Body = TypeAliasType(
|
|
|
53
53
|
"Body",
|
|
54
54
|
Union[
|
|
55
55
|
CheckoutSessionPaymentMethodCreate,
|
|
56
|
-
PlaidPaymentMethodCreate,
|
|
57
56
|
RedirectPaymentMethodCreate,
|
|
57
|
+
PlaidPaymentMethodCreate,
|
|
58
58
|
CardPaymentMethodCreate,
|
|
59
59
|
],
|
|
60
60
|
)
|
|
@@ -28,6 +28,8 @@ class PlaidPaymentMethodCreateTypedDict(TypedDict):
|
|
|
28
28
|
r"""The ID of the buyer to attach the method to."""
|
|
29
29
|
buyer_external_identifier: NotRequired[Nullable[str]]
|
|
30
30
|
r"""The merchant reference for this payment method."""
|
|
31
|
+
external_identifier: NotRequired[Nullable[str]]
|
|
32
|
+
r"""The merchant identifier for this payment method."""
|
|
31
33
|
|
|
32
34
|
|
|
33
35
|
class PlaidPaymentMethodCreate(BaseModel):
|
|
@@ -57,6 +59,9 @@ class PlaidPaymentMethodCreate(BaseModel):
|
|
|
57
59
|
buyer_external_identifier: OptionalNullable[str] = UNSET
|
|
58
60
|
r"""The merchant reference for this payment method."""
|
|
59
61
|
|
|
62
|
+
external_identifier: OptionalNullable[str] = UNSET
|
|
63
|
+
r"""The merchant identifier for this payment method."""
|
|
64
|
+
|
|
60
65
|
@model_serializer(mode="wrap")
|
|
61
66
|
def serialize_model(self, handler):
|
|
62
67
|
optional_fields = [
|
|
@@ -65,12 +70,14 @@ class PlaidPaymentMethodCreate(BaseModel):
|
|
|
65
70
|
"payment_service_id",
|
|
66
71
|
"buyer_id",
|
|
67
72
|
"buyer_external_identifier",
|
|
73
|
+
"external_identifier",
|
|
68
74
|
]
|
|
69
75
|
nullable_fields = [
|
|
70
76
|
"account_id",
|
|
71
77
|
"payment_service_id",
|
|
72
78
|
"buyer_id",
|
|
73
79
|
"buyer_external_identifier",
|
|
80
|
+
"external_identifier",
|
|
74
81
|
]
|
|
75
82
|
null_default_fields = []
|
|
76
83
|
|
|
@@ -80,9 +80,9 @@ TransactionCreatePaymentMethodTypedDict = TypeAliasType(
|
|
|
80
80
|
"TransactionCreatePaymentMethodTypedDict",
|
|
81
81
|
Union[
|
|
82
82
|
TokenPaymentMethodCreateTypedDict,
|
|
83
|
-
PlaidPaymentMethodCreateTypedDict,
|
|
84
83
|
CheckoutSessionWithURLPaymentMethodCreateTypedDict,
|
|
85
84
|
RedirectPaymentMethodCreateTypedDict,
|
|
85
|
+
PlaidPaymentMethodCreateTypedDict,
|
|
86
86
|
ClickToPayPaymentMethodCreateTypedDict,
|
|
87
87
|
CardWithURLPaymentMethodCreateTypedDict,
|
|
88
88
|
ApplePayPaymentMethodCreateTypedDict,
|
|
@@ -99,9 +99,9 @@ TransactionCreatePaymentMethod = TypeAliasType(
|
|
|
99
99
|
"TransactionCreatePaymentMethod",
|
|
100
100
|
Union[
|
|
101
101
|
TokenPaymentMethodCreate,
|
|
102
|
-
PlaidPaymentMethodCreate,
|
|
103
102
|
CheckoutSessionWithURLPaymentMethodCreate,
|
|
104
103
|
RedirectPaymentMethodCreate,
|
|
104
|
+
PlaidPaymentMethodCreate,
|
|
105
105
|
ClickToPayPaymentMethodCreate,
|
|
106
106
|
CardWithURLPaymentMethodCreate,
|
|
107
107
|
ApplePayPaymentMethodCreate,
|
|
@@ -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=rO0akUnnzW0xSvfKF4MAxkL3dKNCjVlE5vwvseoUqIg,454
|
|
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
|
|
@@ -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=
|
|
116
|
+
gr4vy/models/create_payment_methodop.py,sha256=gnQMwvjKbazn-0TRoNt3ylGceYcB_YZA7lIqx1Lu7_g,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
|
|
@@ -302,7 +302,7 @@ gr4vy/models/paypaloptions.py,sha256=aY81ZsVtUgXnGmzSxWoHI3KhMs-_gCZpA6hjbS7sFB8
|
|
|
302
302
|
gr4vy/models/paypalshippingoptions.py,sha256=85pRPBHzUzhNnoF8sFRjaQ2d64-hIXr-AMDj6z1FUZQ,1787
|
|
303
303
|
gr4vy/models/paypalshippingoptionsitem.py,sha256=Q09suxnZ3fIxUpOuyGpNljfPfFKoq82V0L0-Wyt7rSI,3424
|
|
304
304
|
gr4vy/models/paypalshippingoptionsitemamount.py,sha256=YuROvTE2ngGuHajoRnIRY3NwSr3mtADnHes3Xao2llA,608
|
|
305
|
-
gr4vy/models/plaidpaymentmethodcreate.py,sha256=
|
|
305
|
+
gr4vy/models/plaidpaymentmethodcreate.py,sha256=seAagptOcrtywk_t2AjXjRKjkkHGsirfkCBL_JmIrwU,3879
|
|
306
306
|
gr4vy/models/powertranzoptions.py,sha256=ZJAZVTggH_fMMwvMlNvJGe0RpLcASaWBmH5Ln7SgxrU,1692
|
|
307
307
|
gr4vy/models/producttype.py,sha256=qsHybq-2rssJDt3greV0fng-wnHKVaFWGMvf3-52u70,418
|
|
308
308
|
gr4vy/models/recipient.py,sha256=ORw0V4wDt3ytidIDj0Dmut92naYoRkMznh0LKuK17Rs,2568
|
|
@@ -357,7 +357,7 @@ gr4vy/models/transactioncancel.py,sha256=KIptVtqlwZmoWhB0XgjJfNJS6u1q9Y8o2OH8Mq-
|
|
|
357
357
|
gr4vy/models/transactioncapture_output.py,sha256=PIMt4SUkooYkZKt5k15Z-CdXHu3RBCL9Uez5RaOqEn4,3217
|
|
358
358
|
gr4vy/models/transactioncapturecreate.py,sha256=Hs8tTi8iG3xUBptznKHfUD7rvcGZX0OwDzpXOBegd8E,2188
|
|
359
359
|
gr4vy/models/transactionconnectionoptions.py,sha256=BSfmMz1cKRHuDvM4JAR-3UMCw8deGVJfraSpxj1Vc2I,19587
|
|
360
|
-
gr4vy/models/transactioncreate.py,sha256=
|
|
360
|
+
gr4vy/models/transactioncreate.py,sha256=o8cfSv3kps6kozWSEZr2eYArlAgL9neqxcHNldp8i6Q,27262
|
|
361
361
|
gr4vy/models/transactionevent_output.py,sha256=GaG3oyeYnyBaV1zTFgtCrnLj09urSZlziMfjpHpUiwo,3914
|
|
362
362
|
gr4vy/models/transactionevents.py,sha256=BIzlBBLSuci0j_k_HjJaK1QpKBhuqZkkaq1zbPHG6x0,2254
|
|
363
363
|
gr4vy/models/transactiongiftcard.py,sha256=E4f_76ezJJdPlW9kIbrXt-PIx2Zgg3bhqPjVzhWdjpM,2329
|
|
@@ -439,6 +439,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
|
|
|
439
439
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
440
440
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
441
441
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
442
|
-
gr4vy-1.7.
|
|
443
|
-
gr4vy-1.7.
|
|
444
|
-
gr4vy-1.7.
|
|
442
|
+
gr4vy-1.7.14.dist-info/METADATA,sha256=uqVGnWut4h4xrL5ocwJhFZg81NuqTqPS2WH0OtHPGBo,44093
|
|
443
|
+
gr4vy-1.7.14.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
444
|
+
gr4vy-1.7.14.dist-info/RECORD,,
|
|
File without changes
|