@abyss-project/storage 1.0.11 → 1.0.13
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.
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { GetReportResponse } from '..';
|
|
2
2
|
import { GetReportBody } from '../types/interface/api/requests/report.admin.request';
|
|
3
|
-
export declare function
|
|
3
|
+
export declare function getReportAdmin(body: GetReportBody): Promise<GetReportResponse>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getReportAdmin = void 0;
|
|
4
4
|
const __1 = require("..");
|
|
5
|
-
async function
|
|
5
|
+
async function getReportAdmin(body) {
|
|
6
6
|
const response = await __1.AbyssStorageCore.axios.post('/report/admin/report', body);
|
|
7
7
|
return response.data;
|
|
8
8
|
}
|
|
9
|
-
exports.
|
|
9
|
+
exports.getReportAdmin = getReportAdmin;
|