@tagsamurai/fats-api-services 1.0.3-alpha.36 → 1.0.3-alpha.38
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 +3 -3
- package/api-services.system.js +3 -3
- package/package.json +1 -1
package/api-services.es.js
CHANGED
|
@@ -127,7 +127,7 @@ const ChangelogServices = {
|
|
|
127
127
|
return API$I.get("/change-log", { params });
|
|
128
128
|
},
|
|
129
129
|
getChangelogListOptions: (params) => {
|
|
130
|
-
return API$I.get("/change-log/options");
|
|
130
|
+
return API$I.get("/change-log/options", { params });
|
|
131
131
|
},
|
|
132
132
|
getSessionLogList: (params) => {
|
|
133
133
|
return API$I.get("/session-log", { params });
|
|
@@ -344,10 +344,10 @@ const UserServices = {
|
|
|
344
344
|
return API$F.get(`/users/${userId}/assigned-asset`, { params });
|
|
345
345
|
},
|
|
346
346
|
getUserDetailUserAssetBorrowedOption: (userId, params) => {
|
|
347
|
-
return API$F.get(`/users/${userId}/borrowed-asset/
|
|
347
|
+
return API$F.get(`/users/${userId}/borrowed-asset/options`, { params });
|
|
348
348
|
},
|
|
349
349
|
getUserDetailUserAssetAssignedOption: (userId, params) => {
|
|
350
|
-
return API$F.get(`/users/${userId}/assigned-asset/
|
|
350
|
+
return API$F.get(`/users/${userId}/assigned-asset/options`, { params });
|
|
351
351
|
}
|
|
352
352
|
};
|
|
353
353
|
const API$E = createAxiosInstance({
|
package/api-services.system.js
CHANGED
|
@@ -134,7 +134,7 @@ System.register(["axios"], function(exports, module) {
|
|
|
134
134
|
return API$I.get("/change-log", { params });
|
|
135
135
|
},
|
|
136
136
|
getChangelogListOptions: (params) => {
|
|
137
|
-
return API$I.get("/change-log/options");
|
|
137
|
+
return API$I.get("/change-log/options", { params });
|
|
138
138
|
},
|
|
139
139
|
getSessionLogList: (params) => {
|
|
140
140
|
return API$I.get("/session-log", { params });
|
|
@@ -352,10 +352,10 @@ System.register(["axios"], function(exports, module) {
|
|
|
352
352
|
return API$F.get(`/users/${userId}/assigned-asset`, { params });
|
|
353
353
|
},
|
|
354
354
|
getUserDetailUserAssetBorrowedOption: (userId, params) => {
|
|
355
|
-
return API$F.get(`/users/${userId}/borrowed-asset/
|
|
355
|
+
return API$F.get(`/users/${userId}/borrowed-asset/options`, { params });
|
|
356
356
|
},
|
|
357
357
|
getUserDetailUserAssetAssignedOption: (userId, params) => {
|
|
358
|
-
return API$F.get(`/users/${userId}/assigned-asset/
|
|
358
|
+
return API$F.get(`/users/${userId}/assigned-asset/options`, { params });
|
|
359
359
|
}
|
|
360
360
|
});
|
|
361
361
|
const API$E = createAxiosInstance({
|
package/package.json
CHANGED