ntk-cms-api 1.2.155 → 1.2.156
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/esm2020/lib/service/catalog/catalogCategory.service.mjs +1 -1
- package/esm2020/lib/service/catalog/catalogContent.service.mjs +1 -1
- package/esm2020/lib/service/catalog/catalogContentOtherInfo.service.mjs +1 -1
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/catalog/catalogCategory.service.d.ts +2 -2
- package/lib/service/catalog/catalogContent.service.d.ts +3 -3
- package/lib/service/catalog/catalogContentOtherInfo.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,9 +3,9 @@ import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
|
3
3
|
import { CatalogCategoryModel } from '../../models/entity/catalog/catalogCategoryModel';
|
|
4
4
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CatalogCategoryService extends ApiCmsServerBase<CatalogCategoryModel,
|
|
6
|
+
export declare class CatalogCategoryService extends ApiCmsServerBase<CatalogCategoryModel, string> {
|
|
7
7
|
getModuleControllerUrl(): string;
|
|
8
|
-
ServiceMove(OldId:
|
|
8
|
+
ServiceMove(OldId: string, NewId: string): Observable<ErrorExceptionResult<CatalogCategoryModel>>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CatalogCategoryService, never>;
|
|
10
10
|
static ɵprov: i0.ɵɵInjectableDeclaration<CatalogCategoryService>;
|
|
11
11
|
}
|
|
@@ -7,11 +7,11 @@ import { ScoreClickDtoModel } from '../../models/dto/core-main/scoreClickDtoMode
|
|
|
7
7
|
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
8
8
|
import { CoreModuleReportAbuseDtoModel } from '../../models/dto/core-module/coreModuleReportAbuseDtoModel';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class CatalogContentService extends ApiCmsServerBase<CatalogContentModel,
|
|
10
|
+
export declare class CatalogContentService extends ApiCmsServerBase<CatalogContentModel, string> {
|
|
11
11
|
getModuleControllerUrl(): string;
|
|
12
12
|
ServiceScoreClick(model: ScoreClickDtoModel): Observable<ErrorExceptionResultBase>;
|
|
13
|
-
ServiceFavoriteAdd(Id:
|
|
14
|
-
ServiceFavoriteRemove(Id:
|
|
13
|
+
ServiceFavoriteAdd(Id: string): Observable<ErrorExceptionResultBase>;
|
|
14
|
+
ServiceFavoriteRemove(Id: string): Observable<ErrorExceptionResultBase>;
|
|
15
15
|
ServiceFavoriteList(model: FilterModel): Observable<ErrorExceptionResult<CatalogContentModel>>;
|
|
16
16
|
ServiceReportAbuseAdd(model: CoreModuleReportAbuseDtoModel): Observable<ErrorExceptionResult<CatalogContentModel>>;
|
|
17
17
|
ServiceReportAbuseList(model: FilterModel): Observable<ErrorExceptionResult<CatalogContentModel>>;
|
|
@@ -3,7 +3,7 @@ import { CatalogContentOtherInfoModel } from '../../models/entity/catalog/catalo
|
|
|
3
3
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class CatalogContentOtherInfoService extends ApiCmsServerBase<CatalogContentOtherInfoModel,
|
|
6
|
+
export declare class CatalogContentOtherInfoService extends ApiCmsServerBase<CatalogContentOtherInfoModel, string> {
|
|
7
7
|
getModuleControllerUrl(): string;
|
|
8
8
|
ServiceAddBatch(model: CatalogContentOtherInfoModel[]): Observable<ErrorExceptionResult<CatalogContentOtherInfoModel>>;
|
|
9
9
|
ServiceEditBatch(model: CatalogContentOtherInfoModel[]): Observable<ErrorExceptionResult<CatalogContentOtherInfoModel>>;
|