gr4vy 1.2.1__py3-none-any.whl → 1.2.3__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/audit_logs.py +2 -2
- gr4vy/buyers_sdk.py +2 -2
- gr4vy/executions.py +2 -2
- gr4vy/gift_cards_sdk.py +2 -2
- gr4vy/merchant_accounts_sdk.py +2 -2
- gr4vy/models/auditlogaction.py +2 -1
- gr4vy/models/settlement.py +32 -32
- gr4vy/payment_links_sdk.py +2 -2
- gr4vy/payment_methods_sdk.py +2 -2
- gr4vy/payment_service_definitions_sdk.py +2 -2
- gr4vy/payment_services_sdk.py +2 -2
- gr4vy/payouts.py +2 -2
- gr4vy/report_executions_sdk.py +2 -2
- gr4vy/reports_sdk.py +2 -2
- gr4vy/transactions.py +2 -2
- {gr4vy-1.2.1.dist-info → gr4vy-1.2.3.dist-info}/METADATA +1 -1
- {gr4vy-1.2.1.dist-info → gr4vy-1.2.3.dist-info}/RECORD +19 -19
- {gr4vy-1.2.1.dist-info → gr4vy-1.2.3.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.3"
|
|
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.692.0"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.2.3 2.692.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(
|
gr4vy/merchant_accounts_sdk.py
CHANGED
|
@@ -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(
|
gr4vy/models/auditlogaction.py
CHANGED
gr4vy/models/settlement.py
CHANGED
|
@@ -15,21 +15,21 @@ class SettlementTypedDict(TypedDict):
|
|
|
15
15
|
r"""A settlement record for a transaction."""
|
|
16
16
|
|
|
17
17
|
id: str
|
|
18
|
-
r"""The unique identifier for the
|
|
18
|
+
r"""The unique identifier for the record."""
|
|
19
19
|
merchant_account_id: str
|
|
20
|
-
r"""The merchant account this
|
|
20
|
+
r"""The merchant account this record belongs to."""
|
|
21
21
|
created_at: datetime
|
|
22
|
-
r"""The date and time the
|
|
22
|
+
r"""The date and time the record was created, in ISO 8601 format."""
|
|
23
23
|
updated_at: datetime
|
|
24
|
-
r"""The date and time the
|
|
24
|
+
r"""The date and time the record was last updated, in ISO 8601 format."""
|
|
25
25
|
posted_at: datetime
|
|
26
|
-
r"""The date and time the
|
|
26
|
+
r"""The date and time the record was posted, in ISO 8601 format."""
|
|
27
27
|
ingested_at: datetime
|
|
28
|
-
r"""The date and time the
|
|
28
|
+
r"""The date and time the record was ingested, in ISO 8601 format."""
|
|
29
29
|
currency: str
|
|
30
|
-
r"""ISO 4217 currency code
|
|
30
|
+
r"""ISO 4217 currency code."""
|
|
31
31
|
amount: int
|
|
32
|
-
r"""The total
|
|
32
|
+
r"""The total amount in the smallest currency unit (e.g. cents)."""
|
|
33
33
|
commission: int
|
|
34
34
|
r"""The commission amount deducted in the smallest currency unit."""
|
|
35
35
|
payment_service_report_id: str
|
|
@@ -37,45 +37,45 @@ class SettlementTypedDict(TypedDict):
|
|
|
37
37
|
payment_service_report_file_ids: List[str]
|
|
38
38
|
r"""List of file IDs for the payment service report."""
|
|
39
39
|
transaction_id: str
|
|
40
|
-
r"""The transaction this
|
|
41
|
-
type: Literal["settlement"]
|
|
42
|
-
r"""Always 'settlement'."""
|
|
40
|
+
r"""The transaction this record is associated with."""
|
|
43
41
|
exchange_rate: NotRequired[Nullable[float]]
|
|
44
|
-
r"""The exchange rate
|
|
42
|
+
r"""The exchange rate, if applicable."""
|
|
45
43
|
interchange: NotRequired[Nullable[int]]
|
|
46
44
|
r"""The interchange fee, if applicable, in the smallest currency unit."""
|
|
47
45
|
markup: NotRequired[Nullable[int]]
|
|
48
46
|
r"""The markup fee, if applicable, in the smallest currency unit."""
|
|
49
47
|
scheme_fee: NotRequired[Nullable[int]]
|
|
50
48
|
r"""The scheme fee, if applicable, in the smallest currency unit."""
|
|
49
|
+
type: Literal["settlement"]
|
|
50
|
+
r"""Always `settlement`."""
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
class Settlement(BaseModel):
|
|
54
54
|
r"""A settlement record for a transaction."""
|
|
55
55
|
|
|
56
56
|
id: str
|
|
57
|
-
r"""The unique identifier for the
|
|
57
|
+
r"""The unique identifier for the record."""
|
|
58
58
|
|
|
59
59
|
merchant_account_id: str
|
|
60
|
-
r"""The merchant account this
|
|
60
|
+
r"""The merchant account this record belongs to."""
|
|
61
61
|
|
|
62
62
|
created_at: datetime
|
|
63
|
-
r"""The date and time the
|
|
63
|
+
r"""The date and time the record was created, in ISO 8601 format."""
|
|
64
64
|
|
|
65
65
|
updated_at: datetime
|
|
66
|
-
r"""The date and time the
|
|
66
|
+
r"""The date and time the record was last updated, in ISO 8601 format."""
|
|
67
67
|
|
|
68
68
|
posted_at: datetime
|
|
69
|
-
r"""The date and time the
|
|
69
|
+
r"""The date and time the record was posted, in ISO 8601 format."""
|
|
70
70
|
|
|
71
71
|
ingested_at: datetime
|
|
72
|
-
r"""The date and time the
|
|
72
|
+
r"""The date and time the record was ingested, in ISO 8601 format."""
|
|
73
73
|
|
|
74
74
|
currency: str
|
|
75
|
-
r"""ISO 4217 currency code
|
|
75
|
+
r"""ISO 4217 currency code."""
|
|
76
76
|
|
|
77
77
|
amount: int
|
|
78
|
-
r"""The total
|
|
78
|
+
r"""The total amount in the smallest currency unit (e.g. cents)."""
|
|
79
79
|
|
|
80
80
|
commission: int
|
|
81
81
|
r"""The commission amount deducted in the smallest currency unit."""
|
|
@@ -87,19 +87,10 @@ class Settlement(BaseModel):
|
|
|
87
87
|
r"""List of file IDs for the payment service report."""
|
|
88
88
|
|
|
89
89
|
transaction_id: str
|
|
90
|
-
r"""The transaction this
|
|
91
|
-
|
|
92
|
-
TYPE: Annotated[
|
|
93
|
-
Annotated[
|
|
94
|
-
Optional[Literal["settlement"]],
|
|
95
|
-
AfterValidator(validate_const("settlement")),
|
|
96
|
-
],
|
|
97
|
-
pydantic.Field(alias="type"),
|
|
98
|
-
] = "settlement"
|
|
99
|
-
r"""Always 'settlement'."""
|
|
90
|
+
r"""The transaction this record is associated with."""
|
|
100
91
|
|
|
101
92
|
exchange_rate: OptionalNullable[float] = UNSET
|
|
102
|
-
r"""The exchange rate
|
|
93
|
+
r"""The exchange rate, if applicable."""
|
|
103
94
|
|
|
104
95
|
interchange: OptionalNullable[int] = UNSET
|
|
105
96
|
r"""The interchange fee, if applicable, in the smallest currency unit."""
|
|
@@ -110,14 +101,23 @@ class Settlement(BaseModel):
|
|
|
110
101
|
scheme_fee: OptionalNullable[int] = UNSET
|
|
111
102
|
r"""The scheme fee, if applicable, in the smallest currency unit."""
|
|
112
103
|
|
|
104
|
+
TYPE: Annotated[
|
|
105
|
+
Annotated[
|
|
106
|
+
Optional[Literal["settlement"]],
|
|
107
|
+
AfterValidator(validate_const("settlement")),
|
|
108
|
+
],
|
|
109
|
+
pydantic.Field(alias="type"),
|
|
110
|
+
] = "settlement"
|
|
111
|
+
r"""Always `settlement`."""
|
|
112
|
+
|
|
113
113
|
@model_serializer(mode="wrap")
|
|
114
114
|
def serialize_model(self, handler):
|
|
115
115
|
optional_fields = [
|
|
116
|
-
"type",
|
|
117
116
|
"exchange_rate",
|
|
118
117
|
"interchange",
|
|
119
118
|
"markup",
|
|
120
119
|
"scheme_fee",
|
|
120
|
+
"type",
|
|
121
121
|
]
|
|
122
122
|
nullable_fields = ["exchange_rate", "interchange", "markup", "scheme_fee"]
|
|
123
123
|
null_default_fields = []
|
gr4vy/payment_links_sdk.py
CHANGED
|
@@ -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(
|
gr4vy/payment_methods_sdk.py
CHANGED
|
@@ -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(
|
gr4vy/payment_services_sdk.py
CHANGED
|
@@ -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(
|
gr4vy/report_executions_sdk.py
CHANGED
|
@@ -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
|
@@ -267,7 +267,7 @@ class Transactions(BaseSDK):
|
|
|
267
267
|
return None
|
|
268
268
|
|
|
269
269
|
next_cursor = next_cursor[0]
|
|
270
|
-
if next_cursor is None:
|
|
270
|
+
if next_cursor is None or str(next_cursor).strip() == "":
|
|
271
271
|
return None
|
|
272
272
|
|
|
273
273
|
return self.list(
|
|
@@ -602,7 +602,7 @@ class Transactions(BaseSDK):
|
|
|
602
602
|
return None
|
|
603
603
|
|
|
604
604
|
next_cursor = next_cursor[0]
|
|
605
|
-
if next_cursor is None:
|
|
605
|
+
if next_cursor is None or str(next_cursor).strip() == "":
|
|
606
606
|
return None
|
|
607
607
|
|
|
608
608
|
return self.list(
|
|
@@ -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=
|
|
5
|
+
gr4vy/_version.py,sha256=scvEwn9oI328lR0X0F3iOWRxOiKcsxWaQBUQsgoGkaA,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=
|
|
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=
|
|
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=
|
|
39
|
-
gr4vy/gift_cards_sdk.py,sha256=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -320,7 +320,7 @@ gr4vy/models/reportupdate.py,sha256=avZcDLpG6g8FZEhkROx-fT5bnIvq26BwCsER7ccmxus,
|
|
|
320
320
|
gr4vy/models/requiredcheckoutfields.py,sha256=q9AP5V2Mi8pootJrj7D7G6rlbHAF88hg8vFmbxVDMZk,2014
|
|
321
321
|
gr4vy/models/resume_payment_method_network_tokenop.py,sha256=fEj0C5bRWdD4dcKrP3UBhVZSAEw0OHt7hIVty3Iv05I,1805
|
|
322
322
|
gr4vy/models/security.py,sha256=CEV57O-yGWAtzFS162Alfz7G7ynjZ7IlMqRVS2-WuCY,686
|
|
323
|
-
gr4vy/models/settlement.py,sha256=
|
|
323
|
+
gr4vy/models/settlement.py,sha256=lIhUscb8msUNNt_lRo5J2vjgYyJK06NjYO77ovcBm8w,5062
|
|
324
324
|
gr4vy/models/settlements.py,sha256=BPx0p-RPNcKtdENaODUdntF0GVjx3AkjKY1uoY30pL8,606
|
|
325
325
|
gr4vy/models/shippingdetails.py,sha256=FznfE48itPT1wt7VSAnYMtimwhJBgIAJUzWqtM-sGM4,3599
|
|
326
326
|
gr4vy/models/shippingdetailscreate.py,sha256=SE9gvHGoN7OnKWa52QFPwVmkfJzJMZjT_aJbSTkfOM0,2686
|
|
@@ -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=
|
|
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=
|
|
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=
|
|
399
|
-
gr4vy/payment_services_sdk.py,sha256=
|
|
400
|
-
gr4vy/payouts.py,sha256=
|
|
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=
|
|
404
|
-
gr4vy/reports_sdk.py,sha256=
|
|
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=
|
|
408
|
+
gr4vy/transactions.py,sha256=sto66YLLNGvGc928fFciRNaLoKOKf17TXPZXxpCS9zo,164809
|
|
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.3.dist-info/METADATA,sha256=fBzzoIHDiq6i-BF6lgHU6P-07BVRo791-KmUcJfHIng,44151
|
|
432
|
+
gr4vy-1.2.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
433
|
+
gr4vy-1.2.3.dist-info/RECORD,,
|
|
File without changes
|