@tagsamurai/fats-api-services 1.0.3-alpha.82 → 1.0.3-alpha.83
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
|
@@ -347,7 +347,7 @@ const UserServices = {
|
|
|
347
347
|
return API$L.get(`/user-detail/${userId}/assets/borrowed/option`, { params });
|
|
348
348
|
},
|
|
349
349
|
getUserDetailUserAssetAssignedOption: (userId, params) => {
|
|
350
|
-
return API$L.get(`/user-detail/${userId}/
|
|
350
|
+
return API$L.get(`/user-detail/${userId}/assets/assigned/option`, { params });
|
|
351
351
|
}
|
|
352
352
|
};
|
|
353
353
|
const API$K = createAxiosInstance({
|
package/api-services.system.js
CHANGED
|
@@ -355,7 +355,7 @@ System.register(["axios"], function(exports, module) {
|
|
|
355
355
|
return API$L.get(`/user-detail/${userId}/assets/borrowed/option`, { params });
|
|
356
356
|
},
|
|
357
357
|
getUserDetailUserAssetAssignedOption: (userId, params) => {
|
|
358
|
-
return API$L.get(`/user-detail/${userId}/
|
|
358
|
+
return API$L.get(`/user-detail/${userId}/assets/assigned/option`, { params });
|
|
359
359
|
}
|
|
360
360
|
});
|
|
361
361
|
const API$K = createAxiosInstance({
|
package/package.json
CHANGED