ntk-cms-api 1.2.164 → 1.2.165
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/models/dto/estate/_export.mjs +3 -3
- package/esm2020/lib/models/dto/estate/{estatePropertyHistorySerachDtoModel.mjs → estatePropertyHistorySearchDtoModel.mjs} +2 -2
- package/esm2020/lib/models/dto/estate/estatePropertySearchDtoModel.mjs +4 -0
- package/esm2020/lib/service/estate/estateProperty.service.mjs +3 -3
- package/esm2020/lib/service/estate/estatePropertyDetailGroup.service.mjs +16 -1
- package/esm2020/lib/service/estate/estatePropertyHistory.service.mjs +3 -3
- package/fesm2015/ntk-cms-api.mjs +19 -5
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +19 -5
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +2 -2
- package/lib/models/dto/estate/{estatePropertyHistorySerachDtoModel.d.ts → estatePropertyHistorySearchDtoModel.d.ts} +1 -1
- package/lib/models/dto/estate/{estatePropertySerachDtoModel.d.ts → estatePropertySearchDtoModel.d.ts} +3 -1
- package/lib/service/estate/estateProperty.service.d.ts +2 -2
- package/lib/service/estate/estatePropertyDetailGroup.service.d.ts +3 -0
- package/lib/service/estate/estatePropertyHistory.service.d.ts +2 -2
- package/package.json +1 -1
- package/esm2020/lib/models/dto/estate/estatePropertySerachDtoModel.mjs +0 -4
|
@@ -3,5 +3,5 @@ export * from './estateModuleSaleAccountAgencyAdsPaymentDtoModel';
|
|
|
3
3
|
export * from './estateModuleSalePropertyAdsCalculateDtoModel';
|
|
4
4
|
export * from './estateModuleSalePropertyAdsPaymentDtoModel';
|
|
5
5
|
export * from './estatePriceInquiryDtoModel';
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './
|
|
6
|
+
export * from './estatePropertySearchDtoModel';
|
|
7
|
+
export * from './estatePropertyHistorySearchDtoModel';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class EstatePropertyHistorySearchDtoModel extends FilterModel {
|
|
3
3
|
onDateTimeFrom: Date;
|
|
4
4
|
onDateTimeTo: Date;
|
|
5
5
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
|
|
2
|
+
import { EstatePropertyDetailValueModel } from "../../entity/estate/estatePropertyDetailValueModel";
|
|
3
|
+
export declare class EstatePropertySearchDtoModel extends FilterModel {
|
|
3
4
|
linkPropertyTypeLanduseId: string;
|
|
4
5
|
linkPropertyTypeUsageId: string;
|
|
5
6
|
linkContractTypeId: string;
|
|
@@ -16,4 +17,5 @@ export declare class EstatePropertySerachDtoModel extends FilterModel {
|
|
|
16
17
|
periodPriceMax?: number;
|
|
17
18
|
linkLocationIds: number[];
|
|
18
19
|
linkCoreCurrencyId: number;
|
|
20
|
+
propertyDetailValues: EstatePropertyDetailValueModel[];
|
|
19
21
|
}
|
|
@@ -5,7 +5,7 @@ import { Observable } from 'rxjs';
|
|
|
5
5
|
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
6
6
|
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
7
7
|
import { CoreModuleReportAbuseDtoModel } from '../../models/dto/core-module/coreModuleReportAbuseDtoModel';
|
|
8
|
-
import {
|
|
8
|
+
import { EstatePropertySearchDtoModel } from '../../models/dto/estate/estatePropertySearchDtoModel';
|
|
9
9
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string> {
|
|
@@ -16,7 +16,7 @@ export declare class EstatePropertyService extends ApiCmsServerBase<EstateProper
|
|
|
16
16
|
ServiceFavoriteList(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
17
17
|
ServiceReportAbuseAdd(model: CoreModuleReportAbuseDtoModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
18
18
|
ServiceReportAbuseList(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
19
|
-
ServiceGetAllWithFilter(model:
|
|
19
|
+
ServiceGetAllWithFilter(model: EstatePropertySearchDtoModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
20
20
|
ServiceGetAllWithBillboardId(BillboardId: string, model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
21
21
|
ServiceGetAllWithCustomerOrderId(CustomerOrderId: string, model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
22
22
|
ServiceGetAllWithCustomerOrderIdExportFile(CustomerOrderId: string, model: FilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
@@ -3,9 +3,12 @@ import { EstatePropertyDetailGroupModel } from '../../models/entity/estate/estat
|
|
|
3
3
|
import { EditStepDtoModel } from '../../models/dto/core-main/editStepDtoModel';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
6
|
+
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
7
|
+
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
9
|
export declare class EstatePropertyDetailGroupService extends ApiCmsServerBase<EstatePropertyDetailGroupModel, string> {
|
|
8
10
|
getModuleControllerUrl(): string;
|
|
11
|
+
ServiceGetAllFastSearch(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyDetailGroupModel>>;
|
|
9
12
|
ServiceEditStep(model: EditStepDtoModel<string>): Observable<ErrorExceptionResultBase>;
|
|
10
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyDetailGroupService, never>;
|
|
11
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstatePropertyDetailGroupService>;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
2
|
import { EstatePropertyHistoryModel } from '../../models/entity/estate/estatePropertyHistoryModel';
|
|
3
|
-
import {
|
|
3
|
+
import { EstatePropertyHistorySearchDtoModel } from '../../models/dto/estate/estatePropertyHistorySearchDtoModel';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class EstatePropertyHistoryService extends ApiCmsServerBase<EstatePropertyHistoryModel, string> {
|
|
8
8
|
getModuleControllerUrl(): string;
|
|
9
|
-
ServiceGetAllWithFilterOnDate(model:
|
|
9
|
+
ServiceGetAllWithFilterOnDate(model: EstatePropertyHistorySearchDtoModel): Observable<ErrorExceptionResult<EstatePropertyHistoryModel>>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyHistoryService, never>;
|
|
11
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstatePropertyHistoryService>;
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export class EstatePropertySerachDtoModel extends FilterModel {
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXN0YXRlUHJvcGVydHlTZXJhY2hEdG9Nb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL250ay1jbXMtYXBpL3NyYy9saWIvbW9kZWxzL2R0by9lc3RhdGUvZXN0YXRlUHJvcGVydHlTZXJhY2hEdG9Nb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFNUQsTUFBTSxPQUFPLDRCQUE2QixTQUFRLFdBQVc7Q0FrQjVEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRmlsdGVyTW9kZWwgfSBmcm9tIFwiLi4vLi4vZW50aXR5L2Jhc2UvZmlsdGVyTW9kZWxcIjtcclxuXHJcbmV4cG9ydCBjbGFzcyBFc3RhdGVQcm9wZXJ0eVNlcmFjaER0b01vZGVsIGV4dGVuZHMgRmlsdGVyTW9kZWwge1xyXG4gICAgbGlua1Byb3BlcnR5VHlwZUxhbmR1c2VJZDogc3RyaW5nO1xyXG4gICAgbGlua1Byb3BlcnR5VHlwZVVzYWdlSWQ6IHN0cmluZztcclxuICAgIGxpbmtDb250cmFjdFR5cGVJZDogc3RyaW5nO1xyXG4gICAgY3JlYXRlZFlhZXI/OiBudW1iZXI7XHJcbiAgICBwYXJ0aXRpb24/OiBudW1iZXI7XHJcbiAgICBhcmVhPzogbnVtYmVyO1xyXG4gICAgc2FsZVByaWNlTWluPzogbnVtYmVyO1xyXG4gICAgc2FsZVByaWNlTWF4PzogbnVtYmVyO1xyXG4gICAgcmVudFByaWNlTWluPzogbnVtYmVyO1xyXG4gICAgcmVudFByaWNlTWF4PzogbnVtYmVyO1xyXG4gICAgZGVwb3NpdFByaWNlTWluPzogbnVtYmVyO1xyXG4gICAgZGVwb3NpdFByaWNlTWF4PzogbnVtYmVyO1xyXG4gICAgcGVyaW9kUHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICBwZXJpb2RQcmljZU1heD86IG51bWJlcjtcclxuICAgIGxpbmtMb2NhdGlvbklkczogbnVtYmVyW107XHJcbiAgICBsaW5rQ29yZUN1cnJlbmN5SWQ6IG51bWJlcjtcclxuXHJcbn0iXX0=
|