ntk-cms-api 1.2.229 → 1.2.231
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/base/apiCmsServerBase.service.mjs +17 -1
- package/esm2020/lib/service/base/apiServerBase.service.mjs +5 -1
- package/esm2020/lib/service/core-main/coreEnum.service.mjs +9 -7
- package/esm2020/lib/service/core-main/coreSite.service.mjs +4 -1
- package/esm2020/lib/service/core-main/coreUser.service.mjs +4 -1
- package/fesm2015/ntk-cms-api.mjs +34 -6
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +33 -6
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/base/apiServerBase.service.d.ts +4 -0
- package/lib/service/core-main/coreEnum.service.d.ts +0 -2
- package/lib/service/core-main/coreSite.service.d.ts +1 -0
- package/lib/service/core-main/coreUser.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -21,9 +21,13 @@ export declare class ApiServerBase {
|
|
|
21
21
|
private accessLoad;
|
|
22
22
|
private accessDataType;
|
|
23
23
|
setConfig(url: string, apiRetry?: number): void;
|
|
24
|
+
cachApiResult: [];
|
|
25
|
+
cachApiCallDate: [];
|
|
26
|
+
cashApiSeconds: number;
|
|
24
27
|
childConstructor(): any;
|
|
25
28
|
getBaseUrl(): string;
|
|
26
29
|
getModuleControllerUrl(): string;
|
|
30
|
+
getModuleCashService(): string[];
|
|
27
31
|
setHeaders(key: string, value: string): void;
|
|
28
32
|
setAccessLoad(status?: boolean): void;
|
|
29
33
|
setAccessDataType(status: ManageUserAccessDataTypesEnum): void;
|
|
@@ -5,8 +5,6 @@ import { ApiServerBase } from '../base/apiServerBase.service';
|
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class CoreEnumService extends ApiServerBase {
|
|
7
7
|
getModuleControllerUrl(): string;
|
|
8
|
-
private serviceRecordStatusEnumLastResult;
|
|
9
|
-
private serviceRecordStatusEnumInCall;
|
|
10
8
|
ServiceRecordStatusEnum(): Observable<ErrorExceptionResult<InfoEnumModel>>;
|
|
11
9
|
ServiceLocationTypeEnum(): Observable<ErrorExceptionResult<InfoEnumModel>>;
|
|
12
10
|
ServiceUserLanguageEnum(): Observable<ErrorExceptionResult<InfoEnumModel>>;
|
|
@@ -13,6 +13,7 @@ import { CoreSiteSupportModel } from '../../models/entity/core-main/coreSiteSupp
|
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class CoreSiteService extends ApiCmsServerBase<CoreSiteModel, number, FilterModel> {
|
|
15
15
|
getModuleControllerUrl(): string;
|
|
16
|
+
getModuleCashService(): string[];
|
|
16
17
|
ServiceModuleDataOptimaze(linkSiteId: number): Observable<ErrorExceptionResult<ProcessModuleSiteDataOptimazeOutputModel>>;
|
|
17
18
|
ServiceModuleDataInfo(linkSiteId: number): Observable<ErrorExceptionResult<ProcessModuleSiteDataInfoOutputModel>>;
|
|
18
19
|
ServiceWebScreenshot(model: CoreSiteModel): Observable<ErrorExceptionResult<CoreSiteModel>>;
|
|
@@ -9,6 +9,7 @@ export declare class CoreUserService extends ApiCmsServerBase<CoreUserModel, num
|
|
|
9
9
|
CurrentUser: BehaviorSubject<CoreUserModel>;
|
|
10
10
|
CurrentUserObs: Observable<CoreUserModel>;
|
|
11
11
|
getModuleControllerUrl(): string;
|
|
12
|
+
getModuleCashService(): string[];
|
|
12
13
|
ServiceGetRessellerChart(linkUserId?: number): Observable<ErrorExceptionResult<RessellerChartModel>>;
|
|
13
14
|
SetCurrentUser(model: CoreUserModel): any;
|
|
14
15
|
ServiceCurrectUser(): Observable<ErrorExceptionResult<CoreUserModel>>;
|