ntk-cms-api 1.2.197 → 1.2.198
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/estate/estateAccountAgency.service.mjs +1 -17
- package/esm2020/lib/service/estate/estateAccountUser.service.mjs +1 -17
- package/esm2020/lib/service/estate/estateCustomerOrder.service.mjs +17 -15
- package/esm2020/lib/service/estate/estateProperty.service.mjs +17 -15
- package/esm2020/lib/service/estate/estatePropertyHistory.service.mjs +1 -17
- package/fesm2015/ntk-cms-api.mjs +42 -80
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +42 -80
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/estate/estateAccountAgency.service.d.ts +0 -3
- package/lib/service/estate/estateAccountUser.service.d.ts +0 -3
- package/lib/service/estate/estateCustomerOrder.service.d.ts +0 -1
- package/lib/service/estate/estateProperty.service.d.ts +0 -1
- package/lib/service/estate/estatePropertyHistory.service.d.ts +0 -3
- package/package.json +1 -1
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
2
|
import { EstateAccountAgencyModel } from '../../models/entity/estate/estateAccountAgencyModel';
|
|
3
|
-
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
3
|
import { EstateAccountAgencyFilterModel } from '../../models/dto/estate/estateAccountAgencyFilterModel';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class EstateAccountAgencyService extends ApiCmsServerBase<EstateAccountAgencyModel, string, EstateAccountAgencyFilterModel> {
|
|
8
6
|
getModuleControllerUrl(): string;
|
|
9
|
-
ServiceGetAllWithFilter(model: EstateAccountAgencyFilterModel): Observable<ErrorExceptionResult<EstateAccountAgencyModel>>;
|
|
10
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountAgencyService, never>;
|
|
11
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountAgencyService>;
|
|
12
9
|
}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
2
|
import { EstateAccountUserModel } from '../../models/entity/estate/estateAccountUserModel';
|
|
3
|
-
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
3
|
import { EstateAccountUserFilterModel } from '../../models/dto/estate/estateAccountUserFilterModel';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class EstateAccountUserService extends ApiCmsServerBase<EstateAccountUserModel, string, EstateAccountUserFilterModel> {
|
|
8
6
|
getModuleControllerUrl(): string;
|
|
9
|
-
ServiceGetAllWithFilter(model: EstateAccountUserFilterModel): Observable<ErrorExceptionResult<EstateAccountUserModel>>;
|
|
10
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountUserService, never>;
|
|
11
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountUserService>;
|
|
12
9
|
}
|
|
@@ -10,7 +10,6 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
export declare class EstateCustomerOrderService extends ApiCmsServerBase<EstateCustomerOrderModel, string, EstateCustomerOrderFilterModel> {
|
|
11
11
|
getModuleControllerUrl(): string;
|
|
12
12
|
ServiceActionSendSms(model: EstateCustomerOrderActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
13
|
-
ServiceGetAllWithFilter(model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
14
13
|
ServiceGetAllWithResponsibleUserId(userId: number, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
15
14
|
ServiceGetAllWithCoverPropertyId(propertyId: string, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
16
15
|
ServiceGetAllWithCoverPropertyIdHaveHistory(propertyId: string, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
@@ -17,7 +17,6 @@ export declare class EstatePropertyService extends ApiCmsServerBase<EstateProper
|
|
|
17
17
|
ServiceFavoriteList(model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
18
18
|
ServiceReportAbuseAdd(model: CoreModuleReportAbuseDtoModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
19
19
|
ServiceReportAbuseList(model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
20
|
-
ServiceGetAllWithFilter(model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
21
20
|
ServiceGetAllWithBillboardId(BillboardId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
22
21
|
ServiceGetAllWithCoverCustomerOrderId(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
23
22
|
ServiceGetAllWithCoverCustomerOrderIdHaveHistory(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
2
|
import { EstatePropertyHistoryModel } from '../../models/entity/estate/estatePropertyHistoryModel';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
3
|
import { EstatePropertyHistoryFilterModel } from '../../models/dto/estate/estatePropertyHistoryFilterModel';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare class EstatePropertyHistoryService extends ApiCmsServerBase<EstatePropertyHistoryModel, string, EstatePropertyHistoryFilterModel> {
|
|
8
6
|
getModuleControllerUrl(): string;
|
|
9
|
-
ServiceGetAllWithFilterOnDate(model: EstatePropertyHistoryFilterModel): Observable<ErrorExceptionResult<EstatePropertyHistoryModel>>;
|
|
10
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyHistoryService, never>;
|
|
11
8
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstatePropertyHistoryService>;
|
|
12
9
|
}
|