vc-utils 3.3__tar.gz → 3.4__tar.gz
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.
- {vc_utils-3.3 → vc_utils-3.4}/PKG-INFO +1 -1
- {vc_utils-3.3 → vc_utils-3.4}/linkage/session.py +3 -3
- {vc_utils-3.3 → vc_utils-3.4}/setup.py +1 -1
- {vc_utils-3.3 → vc_utils-3.4}/vc_utils.egg-info/PKG-INFO +1 -1
- {vc_utils-3.3 → vc_utils-3.4}/README.md +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/linkage/__init__.py +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/linkage/achievement.py +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/linkage/key_generator.py +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/setup.cfg +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/vc_utils.egg-info/SOURCES.txt +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/vc_utils.egg-info/dependency_links.txt +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/vc_utils.egg-info/requires.txt +0 -0
- {vc_utils-3.3 → vc_utils-3.4}/vc_utils.egg-info/top_level.txt +0 -0
|
@@ -234,13 +234,13 @@ class Linkage_Application:
|
|
|
234
234
|
return result
|
|
235
235
|
|
|
236
236
|
|
|
237
|
-
async def
|
|
237
|
+
async def list_available_banks(self, session, user_id):
|
|
238
238
|
"""
|
|
239
|
-
GET /user/{user_id}/list/banks
|
|
239
|
+
GET /data/user/{user_id}/list/banks
|
|
240
240
|
Returns a list of available bank codes for the specified user.
|
|
241
241
|
"""
|
|
242
242
|
# Implement the logic to list available banks for the user
|
|
243
|
-
uri = f"{LINKAGE_M2M_HOST}/user/{user_id}/list/banks"
|
|
243
|
+
uri = f"{LINKAGE_M2M_HOST}/data/user/{user_id}/list/banks"
|
|
244
244
|
resp = await self.linkage_get(session, uri)
|
|
245
245
|
if resp.status != 200:
|
|
246
246
|
error_data = await resp.json()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|