@tagsamurai/fats-api-services 1.1.0-staging-local.3 → 1.1.0-staging-local.4
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
CHANGED
|
@@ -2304,6 +2304,9 @@ const TAGServices = {
|
|
|
2304
2304
|
},
|
|
2305
2305
|
putDeclineReport: (body, tagType) => {
|
|
2306
2306
|
return API$c.put(`/report/decline-report/${tagType}`, body);
|
|
2307
|
+
},
|
|
2308
|
+
postScanLog: (body) => {
|
|
2309
|
+
return API$c.post("/scan-log", body);
|
|
2307
2310
|
}
|
|
2308
2311
|
};
|
|
2309
2312
|
const API$b = createAxiosInstance({
|
package/api-services.system.js
CHANGED
|
@@ -2312,6 +2312,9 @@ System.register(["axios"], function(exports, module) {
|
|
|
2312
2312
|
},
|
|
2313
2313
|
putDeclineReport: (body, tagType) => {
|
|
2314
2314
|
return API$c.put(`/report/decline-report/${tagType}`, body);
|
|
2315
|
+
},
|
|
2316
|
+
postScanLog: (body) => {
|
|
2317
|
+
return API$c.post("/scan-log", body);
|
|
2315
2318
|
}
|
|
2316
2319
|
});
|
|
2317
2320
|
const API$b = createAxiosInstance({
|
package/package.json
CHANGED
|
@@ -30,5 +30,9 @@ declare const TAGServices: {
|
|
|
30
30
|
putReportTAG: (id: string, body: ReportTagBody) => Promise<AxiosResponse>;
|
|
31
31
|
putReportTAGBulk: (body?: ReportTagBulkBody) => Promise<AxiosResponse>;
|
|
32
32
|
putDeclineReport: (body: DeclineReportDto, tagType?: string) => Promise<AxiosResponse>;
|
|
33
|
+
postScanLog: (body: {
|
|
34
|
+
tag: string;
|
|
35
|
+
serialNumber: string;
|
|
36
|
+
}) => Promise<AxiosResponse>;
|
|
33
37
|
};
|
|
34
38
|
export default TAGServices;
|