gr4vy 1.9.1__py3-none-any.whl → 1.10.0__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/all.py +2 -0
- gr4vy/audit_logs.py +2 -0
- gr4vy/balances.py +2 -0
- gr4vy/basesdk.py +6 -0
- gr4vy/buyers_gift_cards.py +2 -0
- gr4vy/buyers_payment_methods.py +2 -0
- gr4vy/buyers_sdk.py +10 -0
- gr4vy/buyers_shipping_details.py +10 -0
- gr4vy/card_scheme_definitions_sdk.py +2 -0
- gr4vy/checkout_sessions.py +8 -0
- gr4vy/digital_wallets_sdk.py +10 -0
- gr4vy/domains.py +4 -0
- gr4vy/events.py +2 -0
- gr4vy/executions.py +6 -0
- gr4vy/gift_cards_sdk.py +8 -0
- gr4vy/jobs.py +2 -0
- gr4vy/merchant_accounts_sdk.py +8 -0
- gr4vy/models/paymentlink.py +13 -0
- gr4vy/models/paymentlinkcreate.py +13 -0
- gr4vy/network_tokens_cryptogram.py +2 -0
- gr4vy/payment_links_sdk.py +20 -0
- gr4vy/payment_methods_network_tokens.py +10 -0
- gr4vy/payment_methods_payment_service_tokens.py +6 -0
- gr4vy/payment_methods_sdk.py +8 -0
- gr4vy/payment_options_sdk.py +2 -0
- gr4vy/payment_service_definitions_sdk.py +6 -0
- gr4vy/payment_services_sdk.py +14 -0
- gr4vy/payouts.py +6 -0
- gr4vy/refunds_sdk.py +2 -0
- gr4vy/report_executions_sdk.py +2 -0
- gr4vy/reports_sdk.py +8 -0
- gr4vy/sessions.py +6 -0
- gr4vy/transactions.py +16 -0
- gr4vy/transactions_refunds.py +6 -0
- gr4vy/transactions_settlements.py +4 -0
- gr4vy/utils/forms.py +21 -10
- gr4vy/utils/queryparams.py +14 -2
- {gr4vy-1.9.1.dist-info → gr4vy-1.10.0.dist-info}/METADATA +1 -1
- {gr4vy-1.9.1.dist-info → gr4vy-1.10.0.dist-info}/RECORD +41 -41
- {gr4vy-1.9.1.dist-info → gr4vy-1.10.0.dist-info}/WHEEL +0 -0
gr4vy/reports_sdk.py
CHANGED
|
@@ -89,6 +89,7 @@ class ReportsSDK(BaseSDK):
|
|
|
89
89
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
90
90
|
),
|
|
91
91
|
security=self.sdk_configuration.security,
|
|
92
|
+
allow_empty_value=None,
|
|
92
93
|
timeout_ms=timeout_ms,
|
|
93
94
|
)
|
|
94
95
|
|
|
@@ -271,6 +272,7 @@ class ReportsSDK(BaseSDK):
|
|
|
271
272
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
272
273
|
),
|
|
273
274
|
security=self.sdk_configuration.security,
|
|
275
|
+
allow_empty_value=None,
|
|
274
276
|
timeout_ms=timeout_ms,
|
|
275
277
|
)
|
|
276
278
|
|
|
@@ -461,6 +463,7 @@ class ReportsSDK(BaseSDK):
|
|
|
461
463
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
462
464
|
request.report_create, False, False, "json", models.ReportCreate
|
|
463
465
|
),
|
|
466
|
+
allow_empty_value=None,
|
|
464
467
|
timeout_ms=timeout_ms,
|
|
465
468
|
)
|
|
466
469
|
|
|
@@ -624,6 +627,7 @@ class ReportsSDK(BaseSDK):
|
|
|
624
627
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
625
628
|
request.report_create, False, False, "json", models.ReportCreate
|
|
626
629
|
),
|
|
630
|
+
allow_empty_value=None,
|
|
627
631
|
timeout_ms=timeout_ms,
|
|
628
632
|
)
|
|
629
633
|
|
|
@@ -767,6 +771,7 @@ class ReportsSDK(BaseSDK):
|
|
|
767
771
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
768
772
|
),
|
|
769
773
|
security=self.sdk_configuration.security,
|
|
774
|
+
allow_empty_value=None,
|
|
770
775
|
timeout_ms=timeout_ms,
|
|
771
776
|
)
|
|
772
777
|
|
|
@@ -914,6 +919,7 @@ class ReportsSDK(BaseSDK):
|
|
|
914
919
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
915
920
|
),
|
|
916
921
|
security=self.sdk_configuration.security,
|
|
922
|
+
allow_empty_value=None,
|
|
917
923
|
timeout_ms=timeout_ms,
|
|
918
924
|
)
|
|
919
925
|
|
|
@@ -1075,6 +1081,7 @@ class ReportsSDK(BaseSDK):
|
|
|
1075
1081
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
1076
1082
|
request.report_update, False, False, "json", models.ReportUpdate
|
|
1077
1083
|
),
|
|
1084
|
+
allow_empty_value=None,
|
|
1078
1085
|
timeout_ms=timeout_ms,
|
|
1079
1086
|
)
|
|
1080
1087
|
|
|
@@ -1232,6 +1239,7 @@ class ReportsSDK(BaseSDK):
|
|
|
1232
1239
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
1233
1240
|
request.report_update, False, False, "json", models.ReportUpdate
|
|
1234
1241
|
),
|
|
1242
|
+
allow_empty_value=None,
|
|
1235
1243
|
timeout_ms=timeout_ms,
|
|
1236
1244
|
)
|
|
1237
1245
|
|
gr4vy/sessions.py
CHANGED
|
@@ -71,6 +71,7 @@ class Sessions(BaseSDK):
|
|
|
71
71
|
"json",
|
|
72
72
|
models.GooglePaySessionRequest,
|
|
73
73
|
),
|
|
74
|
+
allow_empty_value=None,
|
|
74
75
|
timeout_ms=timeout_ms,
|
|
75
76
|
)
|
|
76
77
|
|
|
@@ -223,6 +224,7 @@ class Sessions(BaseSDK):
|
|
|
223
224
|
"json",
|
|
224
225
|
models.GooglePaySessionRequest,
|
|
225
226
|
),
|
|
227
|
+
allow_empty_value=None,
|
|
226
228
|
timeout_ms=timeout_ms,
|
|
227
229
|
)
|
|
228
230
|
|
|
@@ -378,6 +380,7 @@ class Sessions(BaseSDK):
|
|
|
378
380
|
"json",
|
|
379
381
|
models.ApplePaySessionRequest,
|
|
380
382
|
),
|
|
383
|
+
allow_empty_value=None,
|
|
381
384
|
timeout_ms=timeout_ms,
|
|
382
385
|
)
|
|
383
386
|
|
|
@@ -533,6 +536,7 @@ class Sessions(BaseSDK):
|
|
|
533
536
|
"json",
|
|
534
537
|
models.ApplePaySessionRequest,
|
|
535
538
|
),
|
|
539
|
+
allow_empty_value=None,
|
|
536
540
|
timeout_ms=timeout_ms,
|
|
537
541
|
)
|
|
538
542
|
|
|
@@ -673,6 +677,7 @@ class Sessions(BaseSDK):
|
|
|
673
677
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
674
678
|
request, False, False, "json", models.ClickToPaySessionRequest
|
|
675
679
|
),
|
|
680
|
+
allow_empty_value=None,
|
|
676
681
|
timeout_ms=timeout_ms,
|
|
677
682
|
)
|
|
678
683
|
|
|
@@ -813,6 +818,7 @@ class Sessions(BaseSDK):
|
|
|
813
818
|
get_serialized_body=lambda: utils.serialize_request_body(
|
|
814
819
|
request, False, False, "json", models.ClickToPaySessionRequest
|
|
815
820
|
),
|
|
821
|
+
allow_empty_value=None,
|
|
816
822
|
timeout_ms=timeout_ms,
|
|
817
823
|
)
|
|
818
824
|
|
gr4vy/transactions.py
CHANGED
|
@@ -217,6 +217,7 @@ class Transactions(BaseSDK):
|
|
|
217
217
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
218
218
|
),
|
|
219
219
|
security=self.sdk_configuration.security,
|
|
220
|
+
allow_empty_value=None,
|
|
220
221
|
timeout_ms=timeout_ms,
|
|
221
222
|
)
|
|
222
223
|
|
|
@@ -556,6 +557,7 @@ class Transactions(BaseSDK):
|
|
|
556
557
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
557
558
|
),
|
|
558
559
|
security=self.sdk_configuration.security,
|
|
560
|
+
allow_empty_value=None,
|
|
559
561
|
timeout_ms=timeout_ms,
|
|
560
562
|
)
|
|
561
563
|
|
|
@@ -963,6 +965,7 @@ class Transactions(BaseSDK):
|
|
|
963
965
|
"json",
|
|
964
966
|
models.TransactionCreate,
|
|
965
967
|
),
|
|
968
|
+
allow_empty_value=None,
|
|
966
969
|
timeout_ms=timeout_ms,
|
|
967
970
|
)
|
|
968
971
|
|
|
@@ -1303,6 +1306,7 @@ class Transactions(BaseSDK):
|
|
|
1303
1306
|
"json",
|
|
1304
1307
|
models.TransactionCreate,
|
|
1305
1308
|
),
|
|
1309
|
+
allow_empty_value=None,
|
|
1306
1310
|
timeout_ms=timeout_ms,
|
|
1307
1311
|
)
|
|
1308
1312
|
|
|
@@ -1446,6 +1450,7 @@ class Transactions(BaseSDK):
|
|
|
1446
1450
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
1447
1451
|
),
|
|
1448
1452
|
security=self.sdk_configuration.security,
|
|
1453
|
+
allow_empty_value=None,
|
|
1449
1454
|
timeout_ms=timeout_ms,
|
|
1450
1455
|
)
|
|
1451
1456
|
|
|
@@ -1593,6 +1598,7 @@ class Transactions(BaseSDK):
|
|
|
1593
1598
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
1594
1599
|
),
|
|
1595
1600
|
security=self.sdk_configuration.security,
|
|
1601
|
+
allow_empty_value=None,
|
|
1596
1602
|
timeout_ms=timeout_ms,
|
|
1597
1603
|
)
|
|
1598
1604
|
|
|
@@ -1766,6 +1772,7 @@ class Transactions(BaseSDK):
|
|
|
1766
1772
|
"json",
|
|
1767
1773
|
models.TransactionUpdate,
|
|
1768
1774
|
),
|
|
1775
|
+
allow_empty_value=None,
|
|
1769
1776
|
timeout_ms=timeout_ms,
|
|
1770
1777
|
)
|
|
1771
1778
|
|
|
@@ -1935,6 +1942,7 @@ class Transactions(BaseSDK):
|
|
|
1935
1942
|
"json",
|
|
1936
1943
|
models.TransactionUpdate,
|
|
1937
1944
|
),
|
|
1945
|
+
allow_empty_value=None,
|
|
1938
1946
|
timeout_ms=timeout_ms,
|
|
1939
1947
|
)
|
|
1940
1948
|
|
|
@@ -2100,6 +2108,7 @@ class Transactions(BaseSDK):
|
|
|
2100
2108
|
"json",
|
|
2101
2109
|
models.TransactionCaptureCreate,
|
|
2102
2110
|
),
|
|
2111
|
+
allow_empty_value=None,
|
|
2103
2112
|
timeout_ms=timeout_ms,
|
|
2104
2113
|
)
|
|
2105
2114
|
|
|
@@ -2265,6 +2274,7 @@ class Transactions(BaseSDK):
|
|
|
2265
2274
|
"json",
|
|
2266
2275
|
models.TransactionCaptureCreate,
|
|
2267
2276
|
),
|
|
2277
|
+
allow_empty_value=None,
|
|
2268
2278
|
timeout_ms=timeout_ms,
|
|
2269
2279
|
)
|
|
2270
2280
|
|
|
@@ -2411,6 +2421,7 @@ class Transactions(BaseSDK):
|
|
|
2411
2421
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
2412
2422
|
),
|
|
2413
2423
|
security=self.sdk_configuration.security,
|
|
2424
|
+
allow_empty_value=None,
|
|
2414
2425
|
timeout_ms=timeout_ms,
|
|
2415
2426
|
)
|
|
2416
2427
|
|
|
@@ -2557,6 +2568,7 @@ class Transactions(BaseSDK):
|
|
|
2557
2568
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
2558
2569
|
),
|
|
2559
2570
|
security=self.sdk_configuration.security,
|
|
2571
|
+
allow_empty_value=None,
|
|
2560
2572
|
timeout_ms=timeout_ms,
|
|
2561
2573
|
)
|
|
2562
2574
|
|
|
@@ -2700,6 +2712,7 @@ class Transactions(BaseSDK):
|
|
|
2700
2712
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
2701
2713
|
),
|
|
2702
2714
|
security=self.sdk_configuration.security,
|
|
2715
|
+
allow_empty_value=None,
|
|
2703
2716
|
timeout_ms=timeout_ms,
|
|
2704
2717
|
)
|
|
2705
2718
|
|
|
@@ -2843,6 +2856,7 @@ class Transactions(BaseSDK):
|
|
|
2843
2856
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
2844
2857
|
),
|
|
2845
2858
|
security=self.sdk_configuration.security,
|
|
2859
|
+
allow_empty_value=None,
|
|
2846
2860
|
timeout_ms=timeout_ms,
|
|
2847
2861
|
)
|
|
2848
2862
|
|
|
@@ -2986,6 +3000,7 @@ class Transactions(BaseSDK):
|
|
|
2986
3000
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
2987
3001
|
),
|
|
2988
3002
|
security=self.sdk_configuration.security,
|
|
3003
|
+
allow_empty_value=None,
|
|
2989
3004
|
timeout_ms=timeout_ms,
|
|
2990
3005
|
)
|
|
2991
3006
|
|
|
@@ -3129,6 +3144,7 @@ class Transactions(BaseSDK):
|
|
|
3129
3144
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
3130
3145
|
),
|
|
3131
3146
|
security=self.sdk_configuration.security,
|
|
3147
|
+
allow_empty_value=None,
|
|
3132
3148
|
timeout_ms=timeout_ms,
|
|
3133
3149
|
)
|
|
3134
3150
|
|
gr4vy/transactions_refunds.py
CHANGED
|
@@ -76,6 +76,7 @@ class TransactionsRefunds(BaseSDK):
|
|
|
76
76
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
77
77
|
),
|
|
78
78
|
security=self.sdk_configuration.security,
|
|
79
|
+
allow_empty_value=None,
|
|
79
80
|
timeout_ms=timeout_ms,
|
|
80
81
|
)
|
|
81
82
|
|
|
@@ -223,6 +224,7 @@ class TransactionsRefunds(BaseSDK):
|
|
|
223
224
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
224
225
|
),
|
|
225
226
|
security=self.sdk_configuration.security,
|
|
227
|
+
allow_empty_value=None,
|
|
226
228
|
timeout_ms=timeout_ms,
|
|
227
229
|
)
|
|
228
230
|
|
|
@@ -394,6 +396,7 @@ class TransactionsRefunds(BaseSDK):
|
|
|
394
396
|
"json",
|
|
395
397
|
models.TransactionRefundCreate,
|
|
396
398
|
),
|
|
399
|
+
allow_empty_value=None,
|
|
397
400
|
timeout_ms=timeout_ms,
|
|
398
401
|
)
|
|
399
402
|
|
|
@@ -561,6 +564,7 @@ class TransactionsRefunds(BaseSDK):
|
|
|
561
564
|
"json",
|
|
562
565
|
models.TransactionRefundCreate,
|
|
563
566
|
),
|
|
567
|
+
allow_empty_value=None,
|
|
564
568
|
timeout_ms=timeout_ms,
|
|
565
569
|
)
|
|
566
570
|
|
|
@@ -707,6 +711,7 @@ class TransactionsRefunds(BaseSDK):
|
|
|
707
711
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
708
712
|
),
|
|
709
713
|
security=self.sdk_configuration.security,
|
|
714
|
+
allow_empty_value=None,
|
|
710
715
|
timeout_ms=timeout_ms,
|
|
711
716
|
)
|
|
712
717
|
|
|
@@ -857,6 +862,7 @@ class TransactionsRefunds(BaseSDK):
|
|
|
857
862
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
858
863
|
),
|
|
859
864
|
security=self.sdk_configuration.security,
|
|
865
|
+
allow_empty_value=None,
|
|
860
866
|
timeout_ms=timeout_ms,
|
|
861
867
|
)
|
|
862
868
|
|
|
@@ -65,6 +65,7 @@ class TransactionsSettlements(BaseSDK):
|
|
|
65
65
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
66
66
|
),
|
|
67
67
|
security=self.sdk_configuration.security,
|
|
68
|
+
allow_empty_value=None,
|
|
68
69
|
timeout_ms=timeout_ms,
|
|
69
70
|
)
|
|
70
71
|
|
|
@@ -215,6 +216,7 @@ class TransactionsSettlements(BaseSDK):
|
|
|
215
216
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
216
217
|
),
|
|
217
218
|
security=self.sdk_configuration.security,
|
|
219
|
+
allow_empty_value=None,
|
|
218
220
|
timeout_ms=timeout_ms,
|
|
219
221
|
)
|
|
220
222
|
|
|
@@ -362,6 +364,7 @@ class TransactionsSettlements(BaseSDK):
|
|
|
362
364
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
363
365
|
),
|
|
364
366
|
security=self.sdk_configuration.security,
|
|
367
|
+
allow_empty_value=None,
|
|
365
368
|
timeout_ms=timeout_ms,
|
|
366
369
|
)
|
|
367
370
|
|
|
@@ -509,6 +512,7 @@ class TransactionsSettlements(BaseSDK):
|
|
|
509
512
|
merchant_account_id=self.sdk_configuration.globals.merchant_account_id,
|
|
510
513
|
),
|
|
511
514
|
security=self.sdk_configuration.security,
|
|
515
|
+
allow_empty_value=None,
|
|
512
516
|
timeout_ms=timeout_ms,
|
|
513
517
|
)
|
|
514
518
|
|
gr4vy/utils/forms.py
CHANGED
|
@@ -142,16 +142,21 @@ def serialize_multipart_form(
|
|
|
142
142
|
if field_metadata.file:
|
|
143
143
|
if isinstance(val, List):
|
|
144
144
|
# Handle array of files
|
|
145
|
+
array_field_name = f_name + "[]"
|
|
145
146
|
for file_obj in val:
|
|
146
147
|
if not _is_set(file_obj):
|
|
147
148
|
continue
|
|
148
|
-
|
|
149
|
-
file_name, content, content_type = _extract_file_properties(
|
|
149
|
+
|
|
150
|
+
file_name, content, content_type = _extract_file_properties(
|
|
151
|
+
file_obj
|
|
152
|
+
)
|
|
150
153
|
|
|
151
154
|
if content_type is not None:
|
|
152
|
-
files.append(
|
|
155
|
+
files.append(
|
|
156
|
+
(array_field_name, (file_name, content, content_type))
|
|
157
|
+
)
|
|
153
158
|
else:
|
|
154
|
-
files.append((
|
|
159
|
+
files.append((array_field_name, (file_name, content)))
|
|
155
160
|
else:
|
|
156
161
|
# Handle single file
|
|
157
162
|
file_name, content, content_type = _extract_file_properties(val)
|
|
@@ -161,11 +166,16 @@ def serialize_multipart_form(
|
|
|
161
166
|
else:
|
|
162
167
|
files.append((f_name, (file_name, content)))
|
|
163
168
|
elif field_metadata.json:
|
|
164
|
-
files.append(
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
+
files.append(
|
|
170
|
+
(
|
|
171
|
+
f_name,
|
|
172
|
+
(
|
|
173
|
+
None,
|
|
174
|
+
marshal_json(val, request_field_types[name]),
|
|
175
|
+
"application/json",
|
|
176
|
+
),
|
|
177
|
+
)
|
|
178
|
+
)
|
|
169
179
|
else:
|
|
170
180
|
if isinstance(val, List):
|
|
171
181
|
values = []
|
|
@@ -175,7 +185,8 @@ def serialize_multipart_form(
|
|
|
175
185
|
continue
|
|
176
186
|
values.append(_val_to_string(value))
|
|
177
187
|
|
|
178
|
-
|
|
188
|
+
array_field_name = f_name + "[]"
|
|
189
|
+
form[array_field_name] = values
|
|
179
190
|
else:
|
|
180
191
|
form[f_name] = _val_to_string(val)
|
|
181
192
|
return media_type, form, files
|
gr4vy/utils/queryparams.py
CHANGED
|
@@ -27,12 +27,13 @@ from .forms import _populate_form
|
|
|
27
27
|
def get_query_params(
|
|
28
28
|
query_params: Any,
|
|
29
29
|
gbls: Optional[Any] = None,
|
|
30
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
30
31
|
) -> Dict[str, List[str]]:
|
|
31
32
|
params: Dict[str, List[str]] = {}
|
|
32
33
|
|
|
33
|
-
globals_already_populated = _populate_query_params(query_params, gbls, params, [])
|
|
34
|
+
globals_already_populated = _populate_query_params(query_params, gbls, params, [], allow_empty_value)
|
|
34
35
|
if _is_set(gbls):
|
|
35
|
-
_populate_query_params(gbls, None, params, globals_already_populated)
|
|
36
|
+
_populate_query_params(gbls, None, params, globals_already_populated, allow_empty_value)
|
|
36
37
|
|
|
37
38
|
return params
|
|
38
39
|
|
|
@@ -42,6 +43,7 @@ def _populate_query_params(
|
|
|
42
43
|
gbls: Any,
|
|
43
44
|
query_param_values: Dict[str, List[str]],
|
|
44
45
|
skip_fields: List[str],
|
|
46
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
45
47
|
) -> List[str]:
|
|
46
48
|
globals_already_populated: List[str] = []
|
|
47
49
|
|
|
@@ -69,6 +71,16 @@ def _populate_query_params(
|
|
|
69
71
|
globals_already_populated.append(name)
|
|
70
72
|
|
|
71
73
|
f_name = field.alias if field.alias is not None else name
|
|
74
|
+
|
|
75
|
+
allow_empty_set = set(allow_empty_value or [])
|
|
76
|
+
should_include_empty = f_name in allow_empty_set and (
|
|
77
|
+
value is None or value == [] or value == ""
|
|
78
|
+
)
|
|
79
|
+
|
|
80
|
+
if should_include_empty:
|
|
81
|
+
query_param_values[f_name] = [""]
|
|
82
|
+
continue
|
|
83
|
+
|
|
72
84
|
serialization = metadata.serialization
|
|
73
85
|
if serialization is not None:
|
|
74
86
|
serialized_parms = _get_serialized_params(
|
|
@@ -2,21 +2,21 @@ 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=uDHWoFhgWpTKAo04NQWPbgU1p46FnoJMyhaGEbda-z0,454
|
|
6
6
|
gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
|
|
7
|
-
gr4vy/all.py,sha256=
|
|
8
|
-
gr4vy/audit_logs.py,sha256=
|
|
7
|
+
gr4vy/all.py,sha256=dSRtcZcQ7gc9MYmgUFdExz077A5UjbLns7Zg48BQPtg,15248
|
|
8
|
+
gr4vy/audit_logs.py,sha256=xbdj2X5OfgDu8SE5yk8aRlJcNlU-k7AZRFTQMGJGGVM,17159
|
|
9
9
|
gr4vy/auth.py,sha256=gxS5MjLUA0r1mSZADniCIQV4khqAn7FMvrTh-9Czm1g,8714
|
|
10
|
-
gr4vy/balances.py,sha256=
|
|
11
|
-
gr4vy/basesdk.py,sha256=
|
|
12
|
-
gr4vy/buyers_gift_cards.py,sha256=
|
|
13
|
-
gr4vy/buyers_payment_methods.py,sha256=
|
|
14
|
-
gr4vy/buyers_sdk.py,sha256=
|
|
15
|
-
gr4vy/buyers_shipping_details.py,sha256=
|
|
16
|
-
gr4vy/card_scheme_definitions_sdk.py,sha256=
|
|
17
|
-
gr4vy/checkout_sessions.py,sha256=
|
|
18
|
-
gr4vy/digital_wallets_sdk.py,sha256=
|
|
19
|
-
gr4vy/domains.py,sha256=
|
|
10
|
+
gr4vy/balances.py,sha256=OlFgk2Zj7r8hOMkVsY01hO_AutfpbIOYUHylSQhRKF4,14472
|
|
11
|
+
gr4vy/basesdk.py,sha256=qXKa_5mh9lobpK72QoTtHE5mCunkxpk3yLepajmDvoY,12435
|
|
12
|
+
gr4vy/buyers_gift_cards.py,sha256=Eh1QX7Oq5THLDUDj1jYxB6tmBTf06iKdgFW7RzNnBEI,14190
|
|
13
|
+
gr4vy/buyers_payment_methods.py,sha256=ldl8b-KwXqPzYeUuwLjbeO1OcxefJtEFjT85DpXQKUA,15667
|
|
14
|
+
gr4vy/buyers_sdk.py,sha256=eNRuPvnPZesnVNgfVBF7c30fvVLFHIZxe3zGw4QQqgo,73914
|
|
15
|
+
gr4vy/buyers_shipping_details.py,sha256=Ddqkm4XDyBOJPM4a2gtOqquQQtuC4jt7RRb8EXVcEbI,73657
|
|
16
|
+
gr4vy/card_scheme_definitions_sdk.py,sha256=AfOXOLtyWSr17XmsVBXg9TDtULuLt36ULxmaTu0unSA,13715
|
|
17
|
+
gr4vy/checkout_sessions.py,sha256=yTyg7sVrqV8HXSkIfAOqIgmMC8k-c9WCrdgNBKPp2Hk,58750
|
|
18
|
+
gr4vy/digital_wallets_sdk.py,sha256=WA4WmmvL086rbXir5C3zYiVdl5jkQua-ff2ahCH5ZUQ,71491
|
|
19
|
+
gr4vy/domains.py,sha256=DUsLCGjYbhKiPwc4doFfwRVSnAE2917mUOBzBPiU8cU,28616
|
|
20
20
|
gr4vy/errors/__init__.py,sha256=ZDz7v86-UM-FLysIfPwSWRu-TH_1Xfu8xo8SCpVeFY8,3697
|
|
21
21
|
gr4vy/errors/apierror.py,sha256=YT34lpfLV7o_jf7wAEkhUJxGQ9SJEIEBj6oontmBbMk,1278
|
|
22
22
|
gr4vy/errors/error400.py,sha256=GLh8nhlOQW5jBRgknG-S6627Fvg1YyPSbuWk4qWewvA,1537
|
|
@@ -34,12 +34,12 @@ gr4vy/errors/gr4vyerror.py,sha256=TQKXje0NIownDt_KO_v7fKS7SeC8_oeWzLlsvO_BYCY,95
|
|
|
34
34
|
gr4vy/errors/httpvalidationerror.py,sha256=rFriemLuM5ku52059C5jbCTRebq8fmKp9WPdaAW9nvk,873
|
|
35
35
|
gr4vy/errors/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
36
36
|
gr4vy/errors/responsevalidationerror.py,sha256=dmSlUtGff9vsv5N_nrAbn_bsppKhuI5nu9rpG456xPo,745
|
|
37
|
-
gr4vy/events.py,sha256=
|
|
38
|
-
gr4vy/executions.py,sha256=
|
|
39
|
-
gr4vy/gift_cards_sdk.py,sha256=
|
|
37
|
+
gr4vy/events.py,sha256=nx0Ymvn-OJ73vFf9ofgXUppqeFlgw_vw2Dv2ztFrjPM,16486
|
|
38
|
+
gr4vy/executions.py,sha256=5UXpEUcmC2tHzTZspTY-ykMRfCCxThYIEWjv2cxUHxw,44364
|
|
39
|
+
gr4vy/gift_cards_sdk.py,sha256=Jbd6p4M8u-_n2y727-uD-7FuQcnV1a2xy4eOacUznCY,57715
|
|
40
40
|
gr4vy/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
41
|
-
gr4vy/jobs.py,sha256
|
|
42
|
-
gr4vy/merchant_accounts_sdk.py,sha256=
|
|
41
|
+
gr4vy/jobs.py,sha256=tJe0qDHFSNbZgUL9r3AkyVVmkxszX2Qw8N8SkhvRDgo,14641
|
|
42
|
+
gr4vy/merchant_accounts_sdk.py,sha256=wBpZs-xeBU5ro32k-tkDgPPYmpMsA_DgjBQfmEsFZrs,82551
|
|
43
43
|
gr4vy/models/__init__.py,sha256=6ngsdstyxrQ2IqHOxB40sNTZGBeMMR9jwCxqx22y_7E,134878
|
|
44
44
|
gr4vy/models/accountsreceivablesreportspec.py,sha256=X4YKJ5TII4KFi1I47BYt1Egxsfs84EaqXsb7g90IpLw,1012
|
|
45
45
|
gr4vy/models/accountupdaterinquirysummary.py,sha256=rOJn5uG7cNFUkd6BbsAve6ueUlAJzU5_d_zeDu6RBTg,1097
|
|
@@ -260,8 +260,8 @@ gr4vy/models/nuveiidealoptions.py,sha256=5AkzXKvFFVu9DDqIo5sGimXjOE-6alSDW1WeiPR
|
|
|
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=
|
|
264
|
-
gr4vy/models/paymentlinkcreate.py,sha256=
|
|
263
|
+
gr4vy/models/paymentlink.py,sha256=TSOfkthPM43GovICIV_4FlPVxre3E_CdAxwQWuS8h4E,8851
|
|
264
|
+
gr4vy/models/paymentlinkcreate.py,sha256=L_Q9gZDkeL2YM5nFljkmQpbp5xU0RSxOV7jgR21x62Y,7931
|
|
265
265
|
gr4vy/models/paymentlinks.py,sha256=i7Sj7x18rY5HR-E_LkinvTpVjnl8aCMCldQJFXnV9Lk,2175
|
|
266
266
|
gr4vy/models/paymentlinkstatus.py,sha256=e09HkfXNZDZSN_lkHCyiW7IaI-8JtM-_UmSOQ_im7ZE,334
|
|
267
267
|
gr4vy/models/paymentmethod.py,sha256=0JMRPQjRTz78EYHL1cUmAGeKOjLLMyHEw9-d2Cj_kCo,9416
|
|
@@ -399,25 +399,25 @@ gr4vy/models/wpayeverdaypayoptions.py,sha256=-Cvrii9HVTtkV0r52a-EselUP7IaLFmjehj
|
|
|
399
399
|
gr4vy/models/wpaypaytooptions.py,sha256=gyG3U5Ianv_xAzHKJNu7BY1jina9FBfU5Y7T64Au0dc,2304
|
|
400
400
|
gr4vy/models/wpaypaytoresourceoptions.py,sha256=Ub4XCfIiXKjGXkDERkXmyBWEaFBRxoiBN6olNPO_hRw,1658
|
|
401
401
|
gr4vy/models/wpaypaytosimulationoptions.py,sha256=_UHWxMSXhhEOjXwf4hOdelhtZNOFoqk7OoaqSjGofmY,1876
|
|
402
|
-
gr4vy/network_tokens_cryptogram.py,sha256=
|
|
403
|
-
gr4vy/payment_links_sdk.py,sha256=
|
|
404
|
-
gr4vy/payment_methods_network_tokens.py,sha256=
|
|
405
|
-
gr4vy/payment_methods_payment_service_tokens.py,sha256=
|
|
406
|
-
gr4vy/payment_methods_sdk.py,sha256=
|
|
407
|
-
gr4vy/payment_options_sdk.py,sha256=
|
|
408
|
-
gr4vy/payment_service_definitions_sdk.py,sha256=
|
|
409
|
-
gr4vy/payment_services_sdk.py,sha256
|
|
410
|
-
gr4vy/payouts.py,sha256=
|
|
402
|
+
gr4vy/network_tokens_cryptogram.py,sha256=KM6UDMmtSLeWb0te4H2pzDW5PM9HoMsPp6Q7StziFA4,15026
|
|
403
|
+
gr4vy/payment_links_sdk.py,sha256=m0gGxuZwwr_OZXZhiPwUPDwtEMqzMOxDnERNnQBFKd4,65741
|
|
404
|
+
gr4vy/payment_methods_network_tokens.py,sha256=W3s5P8wBYCLhp8XJ74wbcCu6k84d6MNpioo75Ada4-c,70645
|
|
405
|
+
gr4vy/payment_methods_payment_service_tokens.py,sha256=SNCnK4SdyLhyJXnbXRGhgnmAgviCeWbFqbbPe5WwPcQ,43437
|
|
406
|
+
gr4vy/payment_methods_sdk.py,sha256=71qqVxAh_9piEwCvuVt99HvOK76BEjVXpgVSnTShdbw,58404
|
|
407
|
+
gr4vy/payment_options_sdk.py,sha256=c3Wh4VFxkJjMYvvNFVw9HH7V2V14HH2ytpgjoLfh-Ng,17155
|
|
408
|
+
gr4vy/payment_service_definitions_sdk.py,sha256=EA4FS1bwNRFz6Rz4nyfFGWPTi0wUKPvcrbm5KoIjs4k,41542
|
|
409
|
+
gr4vy/payment_services_sdk.py,sha256=zE9o01-rCUIPyzB5AJeuu1UDgn6p4ZsQNDm_2LAnmPo,114210
|
|
410
|
+
gr4vy/payouts.py,sha256=1nv8P8y2LHr5Jf8KW9nNZVbrGEL-oEEEU8edRTl8WCE,47943
|
|
411
411
|
gr4vy/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
412
|
-
gr4vy/refunds_sdk.py,sha256=
|
|
413
|
-
gr4vy/report_executions_sdk.py,sha256=
|
|
414
|
-
gr4vy/reports_sdk.py,sha256=
|
|
412
|
+
gr4vy/refunds_sdk.py,sha256=WPhPKmkJoHJsWnN5QgVvL8nsONlCl8tqMmAwYStYh3U,13627
|
|
413
|
+
gr4vy/report_executions_sdk.py,sha256=XcOU6_CmabKDsllN6wG_0wf-rcpxqcHN2qtNEfX-zv4,19021
|
|
414
|
+
gr4vy/reports_sdk.py,sha256=HI6IZI5tSeSUsSmUNS4ypNHapFN0wUQ86iLDCr9SAZ4,59929
|
|
415
415
|
gr4vy/sdk.py,sha256=2hfDkFfqPXyFR8w4J0joQrk_5xirotLtFrRYu5glAq4,10519
|
|
416
416
|
gr4vy/sdkconfiguration.py,sha256=aBQ8gY9aOjf1TL0kSLat8hEIoH4lCE9_PhihyhBpRE4,1985
|
|
417
|
-
gr4vy/sessions.py,sha256=
|
|
418
|
-
gr4vy/transactions.py,sha256=
|
|
419
|
-
gr4vy/transactions_refunds.py,sha256=
|
|
420
|
-
gr4vy/transactions_settlements.py,sha256=
|
|
417
|
+
gr4vy/sessions.py,sha256=AA32Wu6OmJbJ7GdypptwmK31SbZH4VLLuo3gnzD4nJE,41837
|
|
418
|
+
gr4vy/transactions.py,sha256=WBzistkxpQdvGKgHWmV9dK7wXphlLr58figWID7YWck,170033
|
|
419
|
+
gr4vy/transactions_refunds.py,sha256=mAzll7rTt7VV0n7wHlAfK5KY81JhWJ1333KjXXGOdFo,43819
|
|
420
|
+
gr4vy/transactions_settlements.py,sha256=oxVGRIMmcwKhZWN0KWW1Wm3831m5y55SU17LMRaKmEM,27902
|
|
421
421
|
gr4vy/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
422
422
|
gr4vy/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
423
423
|
gr4vy/utils/__init__.py,sha256=CAG0O76aEToGKXpT6Ft87Vd-iiQTh4XdBrQ37BVbsiM,5861
|
|
@@ -425,11 +425,11 @@ gr4vy/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,27
|
|
|
425
425
|
gr4vy/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
426
426
|
gr4vy/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
|
|
427
427
|
gr4vy/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
|
|
428
|
-
gr4vy/utils/forms.py,sha256=
|
|
428
|
+
gr4vy/utils/forms.py,sha256=HzltKnYH5-ULoEz8JYfIUcw13I9dMZjw-1lQKNkH5fw,7178
|
|
429
429
|
gr4vy/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
|
|
430
430
|
gr4vy/utils/logger.py,sha256=WdT856mADqljmNjIW_Y1ntFJrIWz3CCOowhK8kcGobk,669
|
|
431
431
|
gr4vy/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
|
|
432
|
-
gr4vy/utils/queryparams.py,sha256=
|
|
432
|
+
gr4vy/utils/queryparams.py,sha256=dxtFQDJ8dlbm_hh_fhdFC1qMWOOHR2MszNycKmME8bQ,6326
|
|
433
433
|
gr4vy/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
|
434
434
|
gr4vy/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
|
|
435
435
|
gr4vy/utils/security.py,sha256=VfMDCDFcnxNgffthL8icp_bjRV9FxtJbhK2DgNkSZMk,6016
|
|
@@ -438,6 +438,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=G4h8gLOK09kjhPiUZjgIMm6zntcbxpvb_m
|
|
|
438
438
|
gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
439
439
|
gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
440
440
|
gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
|
|
441
|
-
gr4vy-1.
|
|
442
|
-
gr4vy-1.
|
|
443
|
-
gr4vy-1.
|
|
441
|
+
gr4vy-1.10.0.dist-info/METADATA,sha256=txEo-PrR-HtFoF9TgBzBE312Z8QnJncBIpWVoc1pfUE,44093
|
|
442
|
+
gr4vy-1.10.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
443
|
+
gr4vy-1.10.0.dist-info/RECORD,,
|
|
File without changes
|