ntk-cms-api 20.25.33 → 20.25.35
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/fesm2022/ntk-cms-api.mjs +15 -0
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/fesm2022/ntk-cms-api.mjs
CHANGED
|
@@ -9013,6 +9013,21 @@ class ContactContentService extends ApiCmsServerBase {
|
|
|
9013
9013
|
getModuleControllerUrl() {
|
|
9014
9014
|
return 'ContactContent';
|
|
9015
9015
|
}
|
|
9016
|
+
ServiceGetAllWithHierarchyCategoryId(Id, model) {
|
|
9017
|
+
if (model == null) {
|
|
9018
|
+
model = new FilterModel();
|
|
9019
|
+
}
|
|
9020
|
+
return this.http
|
|
9021
|
+
.post(this.getBaseUrl() +
|
|
9022
|
+
this.getModuleControllerUrl() +
|
|
9023
|
+
'/GetAllWithHierarchyCategoryId/' +
|
|
9024
|
+
Id, model, {
|
|
9025
|
+
headers: this.getHeaders(),
|
|
9026
|
+
})
|
|
9027
|
+
.pipe(retry(this.configApiRetry), map((ret) => {
|
|
9028
|
+
return ret;
|
|
9029
|
+
}));
|
|
9030
|
+
}
|
|
9016
9031
|
ServiceImportPreview(file) {
|
|
9017
9032
|
const formData = new FormData();
|
|
9018
9033
|
formData.append('file', file, file.name);
|