@tagsamurai/fats-api-services 1.0.3-alpha.93 → 1.0.3-alpha.94
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
|
@@ -2974,7 +2974,7 @@ const SAMPServices = {
|
|
|
2974
2974
|
return API.post("/init");
|
|
2975
2975
|
},
|
|
2976
2976
|
getDetailSAMP: (id) => {
|
|
2977
|
-
return API.get(
|
|
2977
|
+
return API.get(`/${id}`);
|
|
2978
2978
|
},
|
|
2979
2979
|
getActiveSAMPOptions: (params) => {
|
|
2980
2980
|
return API.get("/active/options", { params });
|
package/api-services.system.js
CHANGED
|
@@ -2982,7 +2982,7 @@ System.register(["axios"], function(exports, module) {
|
|
|
2982
2982
|
return API.post("/init");
|
|
2983
2983
|
},
|
|
2984
2984
|
getDetailSAMP: (id) => {
|
|
2985
|
-
return API.get(
|
|
2985
|
+
return API.get(`/${id}`);
|
|
2986
2986
|
},
|
|
2987
2987
|
getActiveSAMPOptions: (params) => {
|
|
2988
2988
|
return API.get("/active/options", { params });
|
package/package.json
CHANGED