@tagsamurai/fats-api-services 1.0.3-alpha.39 → 1.0.3-alpha.40
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.
- package/api-services.es.js +1 -1
- package/api-services.system.js +1 -1
- package/package.json +1 -1
package/api-services.es.js
CHANGED
|
@@ -335,7 +335,7 @@ const UserServices = {
|
|
|
335
335
|
return API$F.get(`/users/${userId}/transaction-log`, { params });
|
|
336
336
|
},
|
|
337
337
|
getUserDetailTransactionAdminLogOption: (userId, params) => {
|
|
338
|
-
return API$F.get(`/users/${userId}/transaction-log/
|
|
338
|
+
return API$F.get(`/users/${userId}/transaction-log/options`, { params });
|
|
339
339
|
},
|
|
340
340
|
getUserDetailUserAssetBorrowedList: (userId, params) => {
|
|
341
341
|
return API$F.get(`/users/${userId}/borrowed-asset`, { params });
|
package/api-services.system.js
CHANGED
|
@@ -343,7 +343,7 @@ System.register(["axios"], function(exports, module) {
|
|
|
343
343
|
return API$F.get(`/users/${userId}/transaction-log`, { params });
|
|
344
344
|
},
|
|
345
345
|
getUserDetailTransactionAdminLogOption: (userId, params) => {
|
|
346
|
-
return API$F.get(`/users/${userId}/transaction-log/
|
|
346
|
+
return API$F.get(`/users/${userId}/transaction-log/options`, { params });
|
|
347
347
|
},
|
|
348
348
|
getUserDetailUserAssetBorrowedList: (userId, params) => {
|
|
349
349
|
return API$F.get(`/users/${userId}/borrowed-asset`, { params });
|
package/package.json
CHANGED