@icos-desktop/react-components 1.0.0-beta.27 → 1.0.0-beta.28
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/build/index.esm.js
CHANGED
@@ -114184,13 +114184,13 @@ function getBookGroupStatistics(params) {
|
|
114184
114184
|
});
|
114185
114185
|
}
|
114186
114186
|
// 删除实体
|
114187
|
-
function deleteSense(
|
114187
|
+
function deleteSense(data) {
|
114188
114188
|
return __awaiter$3(this, void 0, void 0, function () {
|
114189
114189
|
return __generator$2(this, function (_a) {
|
114190
114190
|
return [2 /*return*/, req({
|
114191
114191
|
url: '/v1/open/sense-manager/sense-delete',
|
114192
114192
|
method: 'POST',
|
114193
|
-
|
114193
|
+
data: data,
|
114194
114194
|
})];
|
114195
114195
|
});
|
114196
114196
|
});
|
package/build/index.js
CHANGED
@@ -114204,13 +114204,13 @@ function getBookGroupStatistics(params) {
|
|
114204
114204
|
});
|
114205
114205
|
}
|
114206
114206
|
// 删除实体
|
114207
|
-
function deleteSense(
|
114207
|
+
function deleteSense(data) {
|
114208
114208
|
return __awaiter$3(this, void 0, void 0, function () {
|
114209
114209
|
return __generator$2(this, function (_a) {
|
114210
114210
|
return [2 /*return*/, req({
|
114211
114211
|
url: '/v1/open/sense-manager/sense-delete',
|
114212
114212
|
method: 'POST',
|
114213
|
-
|
114213
|
+
data: data,
|
114214
114214
|
})];
|
114215
114215
|
});
|
114216
114216
|
});
|
package/build/index.umd.js
CHANGED
@@ -114205,13 +114205,13 @@
|
|
114205
114205
|
});
|
114206
114206
|
}
|
114207
114207
|
// 删除实体
|
114208
|
-
function deleteSense(
|
114208
|
+
function deleteSense(data) {
|
114209
114209
|
return __awaiter$3(this, void 0, void 0, function () {
|
114210
114210
|
return __generator$2(this, function (_a) {
|
114211
114211
|
return [2 /*return*/, req({
|
114212
114212
|
url: '/v1/open/sense-manager/sense-delete',
|
114213
114213
|
method: 'POST',
|
114214
|
-
|
114214
|
+
data: data,
|
114215
114215
|
})];
|
114216
114216
|
});
|
114217
114217
|
});
|
@@ -2,4 +2,4 @@ export declare function getBookList(data: SenseManagerAPI.GetBookListReq): Promi
|
|
2
2
|
export declare function getBookFilterConfig(params: SenseManagerAPI.GetBookFilterConfigReq): Promise<SenseManagerAPI.GetBookFilterConfigRes>;
|
3
3
|
export declare function getSenseList(data: SenseManagerAPI.GetSenseListReq): Promise<SenseManagerAPI.GetSenseListRes>;
|
4
4
|
export declare function getBookGroupStatistics(params: SenseManagerAPI.GetBookGroupStatisticsReq): Promise<SenseManagerAPI.GetBookGroupStatisticsRes>;
|
5
|
-
export declare function deleteSense(
|
5
|
+
export declare function deleteSense(data: SenseManagerAPI.DeleteSenseReq): Promise<boolean>;
|