elemento-loyalty-processing 1.0.7__py3-none-any.whl → 1.0.8__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.
- elemento_loyalty_processing/client.py +4 -4
- {elemento_loyalty_processing-1.0.7.dist-info → elemento_loyalty_processing-1.0.8.dist-info}/METADATA +1 -1
- elemento_loyalty_processing-1.0.8.dist-info/RECORD +7 -0
- elemento_loyalty_processing-1.0.7.dist-info/RECORD +0 -7
- {elemento_loyalty_processing-1.0.7.dist-info → elemento_loyalty_processing-1.0.8.dist-info}/WHEEL +0 -0
- {elemento_loyalty_processing-1.0.7.dist-info → elemento_loyalty_processing-1.0.8.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""RPC client services for customer app."""
|
|
2
2
|
|
|
3
|
-
import datetime
|
|
3
|
+
from datetime import datetime
|
|
4
4
|
from typing import Any
|
|
5
5
|
|
|
6
6
|
from kaiju_tools.http import RPCClientService
|
|
@@ -81,7 +81,7 @@ class ElementoLoyaltyProcessingClient(RPCClientService):
|
|
|
81
81
|
return convert(data, Transaction)
|
|
82
82
|
|
|
83
83
|
async def balance_confirm_transaction(
|
|
84
|
-
self, transaction_id:
|
|
84
|
+
self, transaction_id: TransactionExtId, _max_timeout: int = None, _nowait: bool = False
|
|
85
85
|
) -> Transaction:
|
|
86
86
|
"""Call Balance.transaction.confirm."""
|
|
87
87
|
data = await self.call(
|
|
@@ -93,7 +93,7 @@ class ElementoLoyaltyProcessingClient(RPCClientService):
|
|
|
93
93
|
return convert(data, Transaction)
|
|
94
94
|
|
|
95
95
|
async def balance_revert_transaction(
|
|
96
|
-
self, transaction_id:
|
|
96
|
+
self, transaction_id: TransactionExtId, _max_timeout: int = None, _nowait: bool = False
|
|
97
97
|
) -> None:
|
|
98
98
|
"""Call Balance.transaction.revert."""
|
|
99
99
|
return await self.call(
|
|
@@ -104,7 +104,7 @@ class ElementoLoyaltyProcessingClient(RPCClientService):
|
|
|
104
104
|
)
|
|
105
105
|
|
|
106
106
|
async def balance_commit_transaction(
|
|
107
|
-
self, transaction_id:
|
|
107
|
+
self, transaction_id: TransactionExtId, _max_timeout: int = None, _nowait: bool = False
|
|
108
108
|
) -> Transaction:
|
|
109
109
|
"""Call Balance.transaction.commit."""
|
|
110
110
|
data = await self.call(
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
elemento_loyalty_processing/__init__.py,sha256=fHuu8DtGv3an9oFY_4YEI9lvKn0w-rLd7ooxKUdlA2g,117
|
|
2
|
+
elemento_loyalty_processing/client.py,sha256=W6pgGxaPzaC7S8G-DxgvmYiJyghZWmtn6qJg3Bsx9qw,5242
|
|
3
|
+
elemento_loyalty_processing/types.py,sha256=dRsMJ_2N20Il0O4BvO_qAdJ8ZcELl0w_poy3LGvJLWs,3696
|
|
4
|
+
elemento_loyalty_processing-1.0.8.dist-info/METADATA,sha256=_BFZHD3Au1pW98i6VsGM8il799JuGy0aLzRLP2UErCM,448
|
|
5
|
+
elemento_loyalty_processing-1.0.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
6
|
+
elemento_loyalty_processing-1.0.8.dist-info/top_level.txt,sha256=N_AtPyYKvkr1NkoPAUrVl_4VCTP-kJIehtsLhkdacAc,28
|
|
7
|
+
elemento_loyalty_processing-1.0.8.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
elemento_loyalty_processing/__init__.py,sha256=fHuu8DtGv3an9oFY_4YEI9lvKn0w-rLd7ooxKUdlA2g,117
|
|
2
|
-
elemento_loyalty_processing/client.py,sha256=zV6N6pPc4hAkP2Qb-jUNeWEieMygvzYmjM8onEnvw_Q,5219
|
|
3
|
-
elemento_loyalty_processing/types.py,sha256=dRsMJ_2N20Il0O4BvO_qAdJ8ZcELl0w_poy3LGvJLWs,3696
|
|
4
|
-
elemento_loyalty_processing-1.0.7.dist-info/METADATA,sha256=x_p7WVZM6XNV-SNLTOdmPUwuNXPrcHMvdfdGoefRUOw,448
|
|
5
|
-
elemento_loyalty_processing-1.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
6
|
-
elemento_loyalty_processing-1.0.7.dist-info/top_level.txt,sha256=N_AtPyYKvkr1NkoPAUrVl_4VCTP-kJIehtsLhkdacAc,28
|
|
7
|
-
elemento_loyalty_processing-1.0.7.dist-info/RECORD,,
|
{elemento_loyalty_processing-1.0.7.dist-info → elemento_loyalty_processing-1.0.8.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|