gr4vy 1.2.3__py3-none-any.whl → 1.2.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.
- gr4vy/_version.py +3 -3
- gr4vy/models/list_transactionsop.py +10 -0
- gr4vy/models/transaction.py +5 -0
- gr4vy/models/transactionsummary.py +5 -0
- gr4vy/transactions.py +8 -0
- {gr4vy-1.2.3.dist-info → gr4vy-1.2.5.dist-info}/METADATA +2 -2
- {gr4vy-1.2.3.dist-info → gr4vy-1.2.5.dist-info}/RECORD +8 -8
- {gr4vy-1.2.3.dist-info → gr4vy-1.2.5.dist-info}/WHEEL +0 -0
gr4vy/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "gr4vy"
|
|
6
|
-
__version__: str = "1.2.
|
|
6
|
+
__version__: str = "1.2.5"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.2.
|
|
8
|
+
__gen_version__: str = "2.696.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.2.5 2.696.0 1.0.0 gr4vy"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -108,6 +108,8 @@ class ListTransactionsRequestTypedDict(TypedDict):
|
|
|
108
108
|
r"""Filters for transactions where the `merchant_initiated` matches the provided value."""
|
|
109
109
|
used_3ds: NotRequired[Nullable[bool]]
|
|
110
110
|
r"""Filters for transactions that attempted 3DS authentication or not."""
|
|
111
|
+
disputed: NotRequired[Nullable[bool]]
|
|
112
|
+
r"""Filters for transactions that have been disputed."""
|
|
111
113
|
buyer_search: NotRequired[Nullable[List[str]]]
|
|
112
114
|
r"""Filters the results to only get the items for which some of the buyer data contains exactly the provided `buyer_search` values."""
|
|
113
115
|
merchant_account_id: NotRequired[str]
|
|
@@ -368,6 +370,12 @@ class ListTransactionsRequest(BaseModel):
|
|
|
368
370
|
] = UNSET
|
|
369
371
|
r"""Filters for transactions that attempted 3DS authentication or not."""
|
|
370
372
|
|
|
373
|
+
disputed: Annotated[
|
|
374
|
+
OptionalNullable[bool],
|
|
375
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
376
|
+
] = UNSET
|
|
377
|
+
r"""Filters for transactions that have been disputed."""
|
|
378
|
+
|
|
371
379
|
buyer_search: Annotated[
|
|
372
380
|
OptionalNullable[List[str]],
|
|
373
381
|
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
@@ -426,6 +434,7 @@ class ListTransactionsRequest(BaseModel):
|
|
|
426
434
|
"is_subsequent_payment",
|
|
427
435
|
"merchant_initiated",
|
|
428
436
|
"used_3ds",
|
|
437
|
+
"disputed",
|
|
429
438
|
"buyer_search",
|
|
430
439
|
"merchant_account_id",
|
|
431
440
|
]
|
|
@@ -471,6 +480,7 @@ class ListTransactionsRequest(BaseModel):
|
|
|
471
480
|
"is_subsequent_payment",
|
|
472
481
|
"merchant_initiated",
|
|
473
482
|
"used_3ds",
|
|
483
|
+
"disputed",
|
|
474
484
|
"buyer_search",
|
|
475
485
|
]
|
|
476
486
|
null_default_fields = []
|
gr4vy/models/transaction.py
CHANGED
|
@@ -71,6 +71,8 @@ class TransactionTypedDict(TypedDict):
|
|
|
71
71
|
r"""The date and time when the transaction was created, in ISO 8601 format."""
|
|
72
72
|
updated_at: datetime
|
|
73
73
|
r"""The date and time when the transaction was last updated, in ISO 8601 format."""
|
|
74
|
+
disputed: bool
|
|
75
|
+
r"""Indicates whether this transaction has been disputed."""
|
|
74
76
|
payment_source: TransactionPaymentSource
|
|
75
77
|
r"""The way payment method information made it to this transaction."""
|
|
76
78
|
merchant_initiated: bool
|
|
@@ -204,6 +206,9 @@ class Transaction(BaseModel):
|
|
|
204
206
|
updated_at: datetime
|
|
205
207
|
r"""The date and time when the transaction was last updated, in ISO 8601 format."""
|
|
206
208
|
|
|
209
|
+
disputed: bool
|
|
210
|
+
r"""Indicates whether this transaction has been disputed."""
|
|
211
|
+
|
|
207
212
|
payment_source: Annotated[
|
|
208
213
|
TransactionPaymentSource, PlainValidator(validate_open_enum(False))
|
|
209
214
|
]
|
|
@@ -58,6 +58,8 @@ class TransactionSummaryTypedDict(TypedDict):
|
|
|
58
58
|
r"""The date and time when the transaction was created, in ISO 8601 format."""
|
|
59
59
|
updated_at: datetime
|
|
60
60
|
r"""The date and time when the transaction was last updated, in ISO 8601 format."""
|
|
61
|
+
disputed: bool
|
|
62
|
+
r"""Indicates whether this transaction has been disputed."""
|
|
61
63
|
type: Literal["transaction"]
|
|
62
64
|
r"""Always `transaction`."""
|
|
63
65
|
settled_currency: NotRequired[Nullable[str]]
|
|
@@ -138,6 +140,9 @@ class TransactionSummary(BaseModel):
|
|
|
138
140
|
updated_at: datetime
|
|
139
141
|
r"""The date and time when the transaction was last updated, in ISO 8601 format."""
|
|
140
142
|
|
|
143
|
+
disputed: bool
|
|
144
|
+
r"""Indicates whether this transaction has been disputed."""
|
|
145
|
+
|
|
141
146
|
TYPE: Annotated[
|
|
142
147
|
Annotated[
|
|
143
148
|
Optional[Literal["transaction"]],
|
gr4vy/transactions.py
CHANGED
|
@@ -81,6 +81,7 @@ class Transactions(BaseSDK):
|
|
|
81
81
|
is_subsequent_payment: OptionalNullable[bool] = UNSET,
|
|
82
82
|
merchant_initiated: OptionalNullable[bool] = UNSET,
|
|
83
83
|
used_3ds: OptionalNullable[bool] = UNSET,
|
|
84
|
+
disputed: OptionalNullable[bool] = UNSET,
|
|
84
85
|
buyer_search: OptionalNullable[List[str]] = UNSET,
|
|
85
86
|
merchant_account_id: Optional[str] = None,
|
|
86
87
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
@@ -134,6 +135,7 @@ class Transactions(BaseSDK):
|
|
|
134
135
|
:param is_subsequent_payment: Filters for transactions where the `is_subsequent_payment` matches the provided value.
|
|
135
136
|
:param merchant_initiated: Filters for transactions where the `merchant_initiated` matches the provided value.
|
|
136
137
|
:param used_3ds: Filters for transactions that attempted 3DS authentication or not.
|
|
138
|
+
:param disputed: Filters for transactions that have been disputed.
|
|
137
139
|
:param buyer_search: Filters the results to only get the items for which some of the buyer data contains exactly the provided `buyer_search` values.
|
|
138
140
|
:param merchant_account_id: The ID of the merchant account to use for this request.
|
|
139
141
|
:param retries: Override the default retry configuration for this method
|
|
@@ -194,6 +196,7 @@ class Transactions(BaseSDK):
|
|
|
194
196
|
is_subsequent_payment=is_subsequent_payment,
|
|
195
197
|
merchant_initiated=merchant_initiated,
|
|
196
198
|
used_3ds=used_3ds,
|
|
199
|
+
disputed=disputed,
|
|
197
200
|
buyer_search=buyer_search,
|
|
198
201
|
merchant_account_id=merchant_account_id,
|
|
199
202
|
)
|
|
@@ -313,6 +316,7 @@ class Transactions(BaseSDK):
|
|
|
313
316
|
is_subsequent_payment=is_subsequent_payment,
|
|
314
317
|
merchant_initiated=merchant_initiated,
|
|
315
318
|
used_3ds=used_3ds,
|
|
319
|
+
disputed=disputed,
|
|
316
320
|
buyer_search=buyer_search,
|
|
317
321
|
merchant_account_id=merchant_account_id,
|
|
318
322
|
retries=retries,
|
|
@@ -416,6 +420,7 @@ class Transactions(BaseSDK):
|
|
|
416
420
|
is_subsequent_payment: OptionalNullable[bool] = UNSET,
|
|
417
421
|
merchant_initiated: OptionalNullable[bool] = UNSET,
|
|
418
422
|
used_3ds: OptionalNullable[bool] = UNSET,
|
|
423
|
+
disputed: OptionalNullable[bool] = UNSET,
|
|
419
424
|
buyer_search: OptionalNullable[List[str]] = UNSET,
|
|
420
425
|
merchant_account_id: Optional[str] = None,
|
|
421
426
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
@@ -469,6 +474,7 @@ class Transactions(BaseSDK):
|
|
|
469
474
|
:param is_subsequent_payment: Filters for transactions where the `is_subsequent_payment` matches the provided value.
|
|
470
475
|
:param merchant_initiated: Filters for transactions where the `merchant_initiated` matches the provided value.
|
|
471
476
|
:param used_3ds: Filters for transactions that attempted 3DS authentication or not.
|
|
477
|
+
:param disputed: Filters for transactions that have been disputed.
|
|
472
478
|
:param buyer_search: Filters the results to only get the items for which some of the buyer data contains exactly the provided `buyer_search` values.
|
|
473
479
|
:param merchant_account_id: The ID of the merchant account to use for this request.
|
|
474
480
|
:param retries: Override the default retry configuration for this method
|
|
@@ -529,6 +535,7 @@ class Transactions(BaseSDK):
|
|
|
529
535
|
is_subsequent_payment=is_subsequent_payment,
|
|
530
536
|
merchant_initiated=merchant_initiated,
|
|
531
537
|
used_3ds=used_3ds,
|
|
538
|
+
disputed=disputed,
|
|
532
539
|
buyer_search=buyer_search,
|
|
533
540
|
merchant_account_id=merchant_account_id,
|
|
534
541
|
)
|
|
@@ -648,6 +655,7 @@ class Transactions(BaseSDK):
|
|
|
648
655
|
is_subsequent_payment=is_subsequent_payment,
|
|
649
656
|
merchant_initiated=merchant_initiated,
|
|
650
657
|
used_3ds=used_3ds,
|
|
658
|
+
disputed=disputed,
|
|
651
659
|
buyer_search=buyer_search,
|
|
652
660
|
merchant_account_id=merchant_account_id,
|
|
653
661
|
retries=retries,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: gr4vy
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.5
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy.
|
|
5
5
|
Author: Gr4vy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -10,7 +10,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.13
|
|
12
12
|
Requires-Dist: PyJWT (>=2.10.1,<3.0.0)
|
|
13
|
-
Requires-Dist: cryptography (>=
|
|
13
|
+
Requires-Dist: cryptography (>=45.0.7,<46.0.0)
|
|
14
14
|
Requires-Dist: httpcore (>=1.0.9)
|
|
15
15
|
Requires-Dist: httpx (>=0.28.1)
|
|
16
16
|
Requires-Dist: jsonpath-python (>=1.0.6)
|
|
@@ -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=XP80O-3n9ihNMBbqDxkl2u3Rpacxp-j0D_zxMsgWMm0,452
|
|
6
6
|
gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
|
|
7
7
|
gr4vy/all.py,sha256=WwnLoNn3RgXNpf4Xoz12ct94JD7NMpLz-kzesHHh4m8,15172
|
|
8
8
|
gr4vy/audit_logs.py,sha256=duh_c9mO8vIcpCnB-c77EYn1tkuCp1cRT6a7l0VdZqc,17083
|
|
@@ -235,7 +235,7 @@ gr4vy/models/list_reportsop.py,sha256=hUA719v8VQ6OgNAzmF4ugIrwVfxnA7tOU3vXXp5oIo
|
|
|
235
235
|
gr4vy/models/list_transaction_eventsop.py,sha256=vU6npR2P2YSNb2CObQNBzjzoTSdwzNMJL8GOXYFpKKE,3177
|
|
236
236
|
gr4vy/models/list_transaction_refundsop.py,sha256=-JDjz-RkU744XcBZ3m7IN1ZIL0WqZMOyP9ld6dWkz3w,1531
|
|
237
237
|
gr4vy/models/list_transaction_settlementsop.py,sha256=iS5odOFlm4uCMMmcrWDe5Sj6EQCLjubLpaw8zscx6-g,1579
|
|
238
|
-
gr4vy/models/list_transactionsop.py,sha256=
|
|
238
|
+
gr4vy/models/list_transactionsop.py,sha256=55Zgymc890E9lw8yQoF7ViPjdGRGOboPJwUMGox7mYs,23050
|
|
239
239
|
gr4vy/models/mattildatapioptions.py,sha256=wa-shCYz4U-ajmufnoPmuibVD80JqtbIiZOH58zAQKw,1854
|
|
240
240
|
gr4vy/models/merchantaccount.py,sha256=1Ae4QrKqMwydwAcMtkIh0RSBNZ1eqnk_TLC7VZ8mqL8,13475
|
|
241
241
|
gr4vy/models/merchantaccountcreate.py,sha256=bJmHQtDHtmQL8vtDTaNxmy69mYA9q_CQ-dleYHZGTrA,12782
|
|
@@ -340,7 +340,7 @@ gr4vy/models/threedsecuremethod.py,sha256=o4lUm2J1qZl295ZuoJozw5R_PJJBtKr-WW_q-8
|
|
|
340
340
|
gr4vy/models/threedsecurestatus.py,sha256=YYuev33trJ5aIS_VnNHm4N5ZJjumKEWdOCNxsyHdBMs,309
|
|
341
341
|
gr4vy/models/threedsecurev2.py,sha256=tbl7LU6hrQaC-stDPQYXJApr62A2HgJD17YvD06IsnU,2441
|
|
342
342
|
gr4vy/models/tokenpaymentmethodcreate.py,sha256=vuhZCgZvu9d7U7DAjBN6Bx8tJ29Yx-LCxrmijXaWUj0,2681
|
|
343
|
-
gr4vy/models/transaction.py,sha256=
|
|
343
|
+
gr4vy/models/transaction.py,sha256=vxuPZfKM-IisjtjsBRCRr0pxiOHu0YfgqdLDmpwjshU,22433
|
|
344
344
|
gr4vy/models/transactionbuyer.py,sha256=7VxBYmR7IBNA082NqCCdwWtOjyK9ut5dPS4M-6rVHjE,3074
|
|
345
345
|
gr4vy/models/transactioncancel.py,sha256=OHP0xmmM374aaYXPeV0G2fZn5RRfxbTAzJnNospfCas,3162
|
|
346
346
|
gr4vy/models/transactioncapture.py,sha256=7WD3uoUyDJ1sejtjIb7b5B5BFtpKEi7KkegVtB0DLTg,3174
|
|
@@ -361,7 +361,7 @@ gr4vy/models/transactionretriesreportspec.py,sha256=PUnfQb7ILdp1spWV_Fo9XgbTND7o
|
|
|
361
361
|
gr4vy/models/transactionsreportspec.py,sha256=e1yggg1lXLVMavufoIlbzS9T3k9Hdv6iJj5qKzRlj4c,950
|
|
362
362
|
gr4vy/models/transactionstatus.py,sha256=pYWF680-mTUHe6WfzEBhgxxBn_TK8qEln-4hPD-PeCw,537
|
|
363
363
|
gr4vy/models/transactionsummaries.py,sha256=WiOtmYDPjsKJL3dYiyIifsLtAI0wyAFwWNSsrIbyljg,2226
|
|
364
|
-
gr4vy/models/transactionsummary.py,sha256=
|
|
364
|
+
gr4vy/models/transactionsummary.py,sha256=mv9GfyZIgsygR4_IxFwYHNWaOirgeQGfwC9VdknjKow,12022
|
|
365
365
|
gr4vy/models/transactionthreedsecuresummary.py,sha256=rRFrtiW0auNHauNBNDlIkDd1WfoiTCAEFtg1W7BLoIg,5383
|
|
366
366
|
gr4vy/models/transactionupdate.py,sha256=BnCR-1aNA40v0L0ayps0NtiSSclYh6Zhvi4Py1GWmY0,3514
|
|
367
367
|
gr4vy/models/transactionvoid.py,sha256=z0Rk_1Yrq9zT79UDbJt7OyG_fILUHCcY0p0C9b5Si70,3138
|
|
@@ -405,7 +405,7 @@ gr4vy/reports_sdk.py,sha256=D9UkmvZmyuRWlB89nbhMoeuFsknZ8kmwxTmqQNylY2M,59625
|
|
|
405
405
|
gr4vy/sdk.py,sha256=XqkSODRWO2VLYcVBhQjX0EdgKson0juO_oQMsgJ_h5o,10477
|
|
406
406
|
gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
|
|
407
407
|
gr4vy/sessions.py,sha256=yg9L1vMfHT6dNc6zjthULHFS2dC67QzXCv5WUFMn3DI,41609
|
|
408
|
-
gr4vy/transactions.py,sha256=
|
|
408
|
+
gr4vy/transactions.py,sha256=_EWy3A9PMh3ChScFXTPoGI01-qnODu59u8AAfel6IP8,165191
|
|
409
409
|
gr4vy/transactions_refunds.py,sha256=_YXYEbNw-F5PotIxZE83zU__987Asqz_9JnqBIKhEvw,43591
|
|
410
410
|
gr4vy/transactions_settlements.py,sha256=YOH0JAGvli36XhKKXyQ81JIIuv59uCOpqBri6SlYfa0,27750
|
|
411
411
|
gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
@@ -428,6 +428,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
|
|
|
428
428
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
429
429
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
430
430
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
431
|
-
gr4vy-1.2.
|
|
432
|
-
gr4vy-1.2.
|
|
433
|
-
gr4vy-1.2.
|
|
431
|
+
gr4vy-1.2.5.dist-info/METADATA,sha256=8ssNol6mpEnet0yUgJo7ZHefKQT4TMdRUDTf8aprsmI,44151
|
|
432
|
+
gr4vy-1.2.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
433
|
+
gr4vy-1.2.5.dist-info/RECORD,,
|
|
File without changes
|