gr4vy 1.2.2__py3-none-any.whl → 1.2.4__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 CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "gr4vy"
6
- __version__: str = "1.2.2"
6
+ __version__: str = "1.2.4"
7
7
  __openapi_doc_version__: str = "1.0.0"
8
- __gen_version__: str = "2.690.1"
9
- __user_agent__: str = "speakeasy-sdk/python 1.2.2 2.690.1 1.0.0 gr4vy"
8
+ __gen_version__: str = "2.696.0"
9
+ __user_agent__: str = "speakeasy-sdk/python 1.2.4 2.696.0 1.0.0 gr4vy"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
gr4vy/audit_logs.py CHANGED
@@ -128,7 +128,7 @@ class AuditLogs(BaseSDK):
128
128
  return None
129
129
 
130
130
  next_cursor = next_cursor[0]
131
- if next_cursor is None:
131
+ if next_cursor is None or str(next_cursor).strip() == "":
132
132
  return None
133
133
 
134
134
  return self.list(
@@ -311,7 +311,7 @@ class AuditLogs(BaseSDK):
311
311
  return None
312
312
 
313
313
  next_cursor = next_cursor[0]
314
- if next_cursor is None:
314
+ if next_cursor is None or str(next_cursor).strip() == "":
315
315
  return None
316
316
 
317
317
  return self.list(
gr4vy/buyers_sdk.py CHANGED
@@ -151,7 +151,7 @@ class BuyersSDK(BaseSDK):
151
151
  return None
152
152
 
153
153
  next_cursor = next_cursor[0]
154
- if next_cursor is None:
154
+ if next_cursor is None or str(next_cursor).strip() == "":
155
155
  return None
156
156
 
157
157
  return self.list(
@@ -329,7 +329,7 @@ class BuyersSDK(BaseSDK):
329
329
  return None
330
330
 
331
331
  next_cursor = next_cursor[0]
332
- if next_cursor is None:
332
+ if next_cursor is None or str(next_cursor).strip() == "":
333
333
  return None
334
334
 
335
335
  return self.list(
gr4vy/executions.py CHANGED
@@ -122,7 +122,7 @@ class Executions(BaseSDK):
122
122
  return None
123
123
 
124
124
  next_cursor = next_cursor[0]
125
- if next_cursor is None:
125
+ if next_cursor is None or str(next_cursor).strip() == "":
126
126
  return None
127
127
 
128
128
  return self.list(
@@ -297,7 +297,7 @@ class Executions(BaseSDK):
297
297
  return None
298
298
 
299
299
  next_cursor = next_cursor[0]
300
- if next_cursor is None:
300
+ if next_cursor is None or str(next_cursor).strip() == "":
301
301
  return None
302
302
 
303
303
  return self.list(
gr4vy/gift_cards_sdk.py CHANGED
@@ -1033,7 +1033,7 @@ class GiftCardsSDK(BaseSDK):
1033
1033
  return None
1034
1034
 
1035
1035
  next_cursor = next_cursor[0]
1036
- if next_cursor is None:
1036
+ if next_cursor is None or str(next_cursor).strip() == "":
1037
1037
  return None
1038
1038
 
1039
1039
  return self.list(
@@ -1212,7 +1212,7 @@ class GiftCardsSDK(BaseSDK):
1212
1212
  return None
1213
1213
 
1214
1214
  next_cursor = next_cursor[0]
1215
- if next_cursor is None:
1215
+ if next_cursor is None or str(next_cursor).strip() == "":
1216
1216
  return None
1217
1217
 
1218
1218
  return self.list(
@@ -116,7 +116,7 @@ class MerchantAccountsSDK(BaseSDK):
116
116
  return None
117
117
 
118
118
  next_cursor = next_cursor[0]
119
- if next_cursor is None:
119
+ if next_cursor is None or str(next_cursor).strip() == "":
120
120
  return None
121
121
 
122
122
  return self.list(
@@ -284,7 +284,7 @@ class MerchantAccountsSDK(BaseSDK):
284
284
  return None
285
285
 
286
286
  next_cursor = next_cursor[0]
287
- if next_cursor is None:
287
+ if next_cursor is None or str(next_cursor).strip() == "":
288
288
  return None
289
289
 
290
290
  return self.list(
@@ -6,5 +6,6 @@ from typing import Literal, Union
6
6
 
7
7
 
8
8
  AuditLogAction = Union[
9
- Literal["created", "updated", "deleted", "voided", "captured"], UnrecognizedStr
9
+ Literal["created", "updated", "deleted", "voided", "canceled", "captured"],
10
+ UnrecognizedStr,
10
11
  ]
@@ -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 = []
@@ -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"]],
@@ -587,7 +587,7 @@ class PaymentLinksSDK(BaseSDK):
587
587
  return None
588
588
 
589
589
  next_cursor = next_cursor[0]
590
- if next_cursor is None:
590
+ if next_cursor is None or str(next_cursor).strip() == "":
591
591
  return None
592
592
 
593
593
  return self.list(
@@ -762,7 +762,7 @@ class PaymentLinksSDK(BaseSDK):
762
762
  return None
763
763
 
764
764
  next_cursor = next_cursor[0]
765
- if next_cursor is None:
765
+ if next_cursor is None or str(next_cursor).strip() == "":
766
766
  return None
767
767
 
768
768
  return self.list(
@@ -154,7 +154,7 @@ class PaymentMethodsSDK(BaseSDK):
154
154
  return None
155
155
 
156
156
  next_cursor = next_cursor[0]
157
- if next_cursor is None:
157
+ if next_cursor is None or str(next_cursor).strip() == "":
158
158
  return None
159
159
 
160
160
  return self.list(
@@ -341,7 +341,7 @@ class PaymentMethodsSDK(BaseSDK):
341
341
  return None
342
342
 
343
343
  next_cursor = next_cursor[0]
344
- if next_cursor is None:
344
+ if next_cursor is None or str(next_cursor).strip() == "":
345
345
  return None
346
346
 
347
347
  return self.list(
@@ -113,7 +113,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
113
113
  return None
114
114
 
115
115
  next_cursor = next_cursor[0]
116
- if next_cursor is None:
116
+ if next_cursor is None or str(next_cursor).strip() == "":
117
117
  return None
118
118
 
119
119
  return self.list(
@@ -279,7 +279,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
279
279
  return None
280
280
 
281
281
  next_cursor = next_cursor[0]
282
- if next_cursor is None:
282
+ if next_cursor is None or str(next_cursor).strip() == "":
283
283
  return None
284
284
 
285
285
  return self.list(
@@ -125,7 +125,7 @@ class PaymentServicesSDK(BaseSDK):
125
125
  return None
126
126
 
127
127
  next_cursor = next_cursor[0]
128
- if next_cursor is None:
128
+ if next_cursor is None or str(next_cursor).strip() == "":
129
129
  return None
130
130
 
131
131
  return self.list(
@@ -304,7 +304,7 @@ class PaymentServicesSDK(BaseSDK):
304
304
  return None
305
305
 
306
306
  next_cursor = next_cursor[0]
307
- if next_cursor is None:
307
+ if next_cursor is None or str(next_cursor).strip() == "":
308
308
  return None
309
309
 
310
310
  return self.list(
gr4vy/payouts.py CHANGED
@@ -119,7 +119,7 @@ class Payouts(BaseSDK):
119
119
  return None
120
120
 
121
121
  next_cursor = next_cursor[0]
122
- if next_cursor is None:
122
+ if next_cursor is None or str(next_cursor).strip() == "":
123
123
  return None
124
124
 
125
125
  return self.list(
@@ -290,7 +290,7 @@ class Payouts(BaseSDK):
290
290
  return None
291
291
 
292
292
  next_cursor = next_cursor[0]
293
- if next_cursor is None:
293
+ if next_cursor is None or str(next_cursor).strip() == "":
294
294
  return None
295
295
 
296
296
  return self.list(
@@ -135,7 +135,7 @@ class ReportExecutionsSDK(BaseSDK):
135
135
  return None
136
136
 
137
137
  next_cursor = next_cursor[0]
138
- if next_cursor is None:
138
+ if next_cursor is None or str(next_cursor).strip() == "":
139
139
  return None
140
140
 
141
141
  return self.list(
@@ -326,7 +326,7 @@ class ReportExecutionsSDK(BaseSDK):
326
326
  return None
327
327
 
328
328
  next_cursor = next_cursor[0]
329
- if next_cursor is None:
329
+ if next_cursor is None or str(next_cursor).strip() == "":
330
330
  return None
331
331
 
332
332
  return self.list(
gr4vy/reports_sdk.py CHANGED
@@ -142,7 +142,7 @@ class ReportsSDK(BaseSDK):
142
142
  return None
143
143
 
144
144
  next_cursor = next_cursor[0]
145
- if next_cursor is None:
145
+ if next_cursor is None or str(next_cursor).strip() == "":
146
146
  return None
147
147
 
148
148
  return self.list(
@@ -324,7 +324,7 @@ class ReportsSDK(BaseSDK):
324
324
  return None
325
325
 
326
326
  next_cursor = next_cursor[0]
327
- if next_cursor is None:
327
+ if next_cursor is None or str(next_cursor).strip() == "":
328
328
  return None
329
329
 
330
330
  return self.list(
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
  )
@@ -267,7 +270,7 @@ class Transactions(BaseSDK):
267
270
  return None
268
271
 
269
272
  next_cursor = next_cursor[0]
270
- if next_cursor is None:
273
+ if next_cursor is None or str(next_cursor).strip() == "":
271
274
  return None
272
275
 
273
276
  return self.list(
@@ -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
  )
@@ -602,7 +609,7 @@ class Transactions(BaseSDK):
602
609
  return None
603
610
 
604
611
  next_cursor = next_cursor[0]
605
- if next_cursor is None:
612
+ if next_cursor is None or str(next_cursor).strip() == "":
606
613
  return None
607
614
 
608
615
  return self.list(
@@ -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.2
3
+ Version: 1.2.4
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Gr4vy
6
6
  Requires-Python: >=3.9.2
@@ -2,16 +2,16 @@ 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=1PXL4xfjvKcQIDw8HUHJXyk79dyw76m9IuhDRT8GXqw,452
5
+ gr4vy/_version.py,sha256=Duc_vdJ4N7MB_4V_1VymxvRxN9wHlXSSyKsX0cbU9p0,452
6
6
  gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
7
7
  gr4vy/all.py,sha256=WwnLoNn3RgXNpf4Xoz12ct94JD7NMpLz-kzesHHh4m8,15172
8
- gr4vy/audit_logs.py,sha256=iAT3rnS0NYNKZGw5IVl_MC_RPAHMJNXHfd_K--HIplU,17015
8
+ gr4vy/audit_logs.py,sha256=duh_c9mO8vIcpCnB-c77EYn1tkuCp1cRT6a7l0VdZqc,17083
9
9
  gr4vy/auth.py,sha256=gxS5MjLUA0r1mSZADniCIQV4khqAn7FMvrTh-9Czm1g,8714
10
10
  gr4vy/balances.py,sha256=I5ImXo3bgkaCVigCTnUf1SQK-0LxZEHOex4Dx6MuGRk,14396
11
11
  gr4vy/basesdk.py,sha256=blX6OgKfbCxGZ93GxJuXZaAOmfdIoi-yLHe8Zo5Wg1o,12173
12
12
  gr4vy/buyers_gift_cards.py,sha256=TRQD2w-J82928Q8htFgnJ-Ulr7_1K4EsGayL-9NO84U,14114
13
13
  gr4vy/buyers_payment_methods.py,sha256=lhYTmPxRo0b5_wvotz9NtfAJjfqd8fJ9pOvDdHv7PlY,15591
14
- gr4vy/buyers_sdk.py,sha256=zjlEF3mRmR-2sPQHarM-93hlEdxq7me2nzoXNHRw5hM,73526
14
+ gr4vy/buyers_sdk.py,sha256=wM3pV27ggMN-eHfAmYQZGZJDdhg595feT0PKSYA-mkc,73594
15
15
  gr4vy/buyers_shipping_details.py,sha256=BPnFwoJNXU8F6ChOctILxHfQY8vJvK218Am6nUnhckA,73399
16
16
  gr4vy/card_scheme_definitions_sdk.py,sha256=qwoymeumRGbAi1G3rGPh-BRqsCaXEB-IQcTN0MNaekc,13639
17
17
  gr4vy/checkout_sessions.py,sha256=njjoKuvOUSH09Rhw0vfrwbvBTPUYzLcoP-DE-NOZn34,57130
@@ -35,11 +35,11 @@ gr4vy/errors/httpvalidationerror.py,sha256=kOfc22ctssREHmFjfv-VwjdZu8l1Du1YPYLdh
35
35
  gr4vy/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
36
36
  gr4vy/errors/responsevalidationerror.py,sha256=pGG3nQxVp1R4aUNpFcfZt9eFkTmghX_mpaXk7PzOYUU,682
37
37
  gr4vy/events.py,sha256=BIMBWIzunyVMD86pj2zzWaUd_o5WY1MQZN77uxHe7es,14735
38
- gr4vy/executions.py,sha256=e9OaF4qVIo-7ggjDUad3OH_V1PANev6avArdMRu9K8o,43060
39
- gr4vy/gift_cards_sdk.py,sha256=wGmWTaQqsnVOUNXQ7dFZcDAcw9c5wq8xyoO189ctmpo,57465
38
+ gr4vy/executions.py,sha256=fd0PCYJAMMoqisRSKoEdPVfMetgrHzVVhJFI8UCzKsM,43128
39
+ gr4vy/gift_cards_sdk.py,sha256=aYvoWaBuJybmKfBCSXHbmIlqVxjdWYspCc4JbDB3uSc,57533
40
40
  gr4vy/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
41
41
  gr4vy/jobs.py,sha256=WHx0epnlxOMHFSXTJPwuI5dhOO_acGTX72Lbz6fvD8A,14565
42
- gr4vy/merchant_accounts_sdk.py,sha256=TGwGZqyD_b7xR2pggTsOa3H813-zhakhtjS9d_NsfmA,80907
42
+ gr4vy/merchant_accounts_sdk.py,sha256=bBvTwaPNmv46GZ91OqJOunoJU0SIytaHPAcC2j-Tii0,80975
43
43
  gr4vy/models/__init__.py,sha256=JbrNyHNBK8OlW3Kfhcbk5auLFgXnT4RAKD8FBxc0bDI,131370
44
44
  gr4vy/models/accountsreceivablesreportspec.py,sha256=X4YKJ5TII4KFi1I47BYt1Egxsfs84EaqXsb7g90IpLw,1012
45
45
  gr4vy/models/accountupdaterinquirysummary.py,sha256=rOJn5uG7cNFUkd6BbsAve6ueUlAJzU5_d_zeDu6RBTg,1097
@@ -66,7 +66,7 @@ gr4vy/models/antifrauddecision.py,sha256=_1VpNRGIDXV_LxyZVMe9sYB5DOs8nFU_k3UJU8m
66
66
  gr4vy/models/applepaypaymentmethodcreate.py,sha256=M5kz8yeBjIS6_bJaoqmU1Vps8Giz60b7WU0ejyADbww,4226
67
67
  gr4vy/models/applepaysessionrequest.py,sha256=1cZiA-8CbZc1NaAuDp6j2WKO6GTcw3sscUTJfAdT5Lo,656
68
68
  gr4vy/models/approvaltarget.py,sha256=idLz_qwLv2uiAWIRF-NuzPEgK93WoCMAEYq_-psuOAk,254
69
- gr4vy/models/auditlogaction.py,sha256=KZNEKPpVW6-pptD44Qu7vJav55h3RL7QhpUIHjN8PRs,294
69
+ gr4vy/models/auditlogaction.py,sha256=ARk71gtKPzxPIYYmQJ1aMZ-1JtnFmuSErWThogl-Qxk,311
70
70
  gr4vy/models/auditlogentries.py,sha256=zJpcTRayJdPPgW-qRnFxZmEATjxmfP9HFBYvmwL-CWk,2191
71
71
  gr4vy/models/auditlogentry.py,sha256=MWuCcSDsNp68RSgEJnrtYc4k-_WQvCw6YHOtIv5KByk,2875
72
72
  gr4vy/models/auditlogentryresource.py,sha256=D5ZZA3lK2mFWmNS_TOTr68tMRSnlhqbUQWIM_bt-PX0,599
@@ -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=xNe4WGBuDgGqgkXljDwgAR9BxaA4Rb1J9q1VMftSkd0,22689
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=fof5VDhoQfUyp23cR0QX2RHtSskU--Bj1sqO0Yxyd5U,22264
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=iPnJxJbsmwef778rvAjwZHzpGeZMbqxI5p2r5l0rACA,11853
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
@@ -390,22 +390,22 @@ gr4vy/models/wpaypaytooptions.py,sha256=gyG3U5Ianv_xAzHKJNu7BY1jina9FBfU5Y7T64Au
390
390
  gr4vy/models/wpaypaytoresourceoptions.py,sha256=Ub4XCfIiXKjGXkDERkXmyBWEaFBRxoiBN6olNPO_hRw,1658
391
391
  gr4vy/models/wpaypaytosimulationoptions.py,sha256=_UHWxMSXhhEOjXwf4hOdelhtZNOFoqk7OoaqSjGofmY,1876
392
392
  gr4vy/network_tokens_cryptogram.py,sha256=HBv4aCe9FxTmOzV6gONFU9peYVjD3Ww3B9xh93ooU9E,14950
393
- gr4vy/payment_links_sdk.py,sha256=ezTPTc54698TVlwuS5fZABxx7o0tnpKrE1FFSyMz9DU,64481
393
+ gr4vy/payment_links_sdk.py,sha256=0amFN7G5Vs32E2ZqCq8OLhZvD0eJcbHAu4DL_dlI6ks,64549
394
394
  gr4vy/payment_methods_network_tokens.py,sha256=MZ92irp_W7i-u7c88SXudOiTCyUv5-oDgW4PUcoZiTk,70265
395
395
  gr4vy/payment_methods_payment_service_tokens.py,sha256=NO2Fip0_Aa3CQfvgBC9_5oZNrk4Z8F1N0AtcMWU4kjg,43209
396
- gr4vy/payment_methods_sdk.py,sha256=B2eaabKEfZoiGoEkjqFk88gb0B2QJ_LyaLNZxb7ZfrY,58032
396
+ gr4vy/payment_methods_sdk.py,sha256=959dmJ4abMxFr2AUNjzIdz3VwK8Odc8ssYoDFp8sI5M,58100
397
397
  gr4vy/payment_options_sdk.py,sha256=i8_MNRvP2_0I0WK0fH_hcuORYbEWOTpNnvvvdHnLBi8,17079
398
- gr4vy/payment_service_definitions_sdk.py,sha256=FeopZyGstUfbG30vvgzAzxGN5UFxM4oQ6XWXPXAiOPY,41246
399
- gr4vy/payment_services_sdk.py,sha256=crnzsrsC6q8A43wf6kapeSH-SkpLOgLjFs71CC2sZg4,113732
400
- gr4vy/payouts.py,sha256=XdxuCEknh7-feW4r_W4NKoZb4zO54YM7_ducYrrpzj4,47677
398
+ gr4vy/payment_service_definitions_sdk.py,sha256=5Y3tHmcNtdwaJuJiUnUrzoR7GnG3DiNBK8CIx7pYbRc,41314
399
+ gr4vy/payment_services_sdk.py,sha256=9ca-Fahev_Xa5GPyIiay8dSPNp3wx8paPMEU9y79E-Q,113800
400
+ gr4vy/payouts.py,sha256=1Ai0JM0K-9TdnfdxMXVRcjG5VYpLcumqXUe8GTD5gbk,47745
401
401
  gr4vy/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
402
402
  gr4vy/refunds_sdk.py,sha256=kpU3NaVMsgKxhWblTF-jfAl_Cdpw1HqARP81TypFsjs,13551
403
- gr4vy/report_executions_sdk.py,sha256=He-YQa3iTStnx2xAx8jfpnj8qX4vO4_cVHgvuVCWqos,18877
404
- gr4vy/reports_sdk.py,sha256=lUuxAgnAO0CIDYEoP3VAHnYoG8d4Vq-pi-41uJ4sKPs,59557
403
+ gr4vy/report_executions_sdk.py,sha256=wmclMp0zxC2Px_z6kHjm-uDMrDRIMxomwtD1ZuvDuOQ,18945
404
+ 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=706j8-jmi-fSoNhIsMENmtvw5VqawPPyJopb-YFvJyc,164741
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.2.dist-info/METADATA,sha256=stMKI05oD-e35f_q5LtbhO_7x2iY6eWa-M_FHpDGOTQ,44151
432
- gr4vy-1.2.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
433
- gr4vy-1.2.2.dist-info/RECORD,,
431
+ gr4vy-1.2.4.dist-info/METADATA,sha256=L3QOrqd6xyQ-bdmKfO-aHGixzVVzLGeyAdG4BJs4K9Y,44151
432
+ gr4vy-1.2.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
433
+ gr4vy-1.2.4.dist-info/RECORD,,
File without changes