ntk-cms-api 1.2.195 → 1.2.197
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 +7 -6
- package/esm2020/lib/models/dto/estate/estateAccountAgencyFilterModel.mjs +4 -0
- package/esm2020/lib/models/dto/estate/estateAccountUserFilterModel.mjs +4 -0
- package/esm2020/lib/models/dto/estate/estateCustomerOrderFilterModel.mjs +4 -0
- package/esm2020/lib/models/dto/estate/estatePropertyFilterModel.mjs +4 -0
- package/esm2020/lib/models/dto/estate/estatePropertyHistoryFilterModel.mjs +4 -0
- package/esm2020/lib/service/estate/estateAccountAgency.service.mjs +3 -3
- package/esm2020/lib/service/estate/estateAccountUser.service.mjs +3 -3
- package/esm2020/lib/service/estate/estateCustomerOrder.service.mjs +7 -8
- package/esm2020/lib/service/estate/estateProperty.service.mjs +11 -12
- package/esm2020/lib/service/estate/estatePropertyHistory.service.mjs +3 -3
- package/fesm2015/ntk-cms-api.mjs +23 -23
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +23 -23
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +6 -5
- package/lib/models/dto/estate/{estateAccountUserSearchDtoModel.d.ts → estateAccountAgencyFilterModel.d.ts} +1 -1
- package/lib/models/dto/estate/{estateAccountAgencySearchDtoModel.d.ts → estateAccountUserFilterModel.d.ts} +1 -1
- package/lib/models/dto/estate/{estateCustomerOrderSearchDtoModel.d.ts → estateCustomerOrderFilterModel.d.ts} +1 -1
- package/lib/models/dto/estate/{estatePropertySearchDtoModel.d.ts → estatePropertyFilterModel.d.ts} +1 -1
- package/lib/models/dto/estate/{estatePropertyHistorySearchDtoModel.d.ts → estatePropertyHistoryFilterModel.d.ts} +1 -1
- package/lib/service/estate/estateAccountAgency.service.d.ts +3 -4
- package/lib/service/estate/estateAccountUser.service.d.ts +3 -4
- package/lib/service/estate/estateCustomerOrder.service.d.ts +7 -8
- package/lib/service/estate/estateProperty.service.d.ts +11 -12
- package/lib/service/estate/estatePropertyHistory.service.d.ts +3 -4
- package/package.json +1 -1
- package/esm2020/lib/models/dto/estate/estateAccountAgencySearchDtoModel.mjs +0 -4
- package/esm2020/lib/models/dto/estate/estateAccountUserSearchDtoModel.mjs +0 -4
- package/esm2020/lib/models/dto/estate/estateCustomerOrderSearchDtoModel.mjs +0 -4
- package/esm2020/lib/models/dto/estate/estatePropertyHistorySearchDtoModel.mjs +0 -4
- package/esm2020/lib/models/dto/estate/estatePropertySearchDtoModel.mjs +0 -4
|
@@ -3,10 +3,11 @@ export * from './estateModuleSaleAccountAgencyAdsPaymentDtoModel';
|
|
|
3
3
|
export * from './estateModuleSalePropertyAdsCalculateDtoModel';
|
|
4
4
|
export * from './estateModuleSalePropertyAdsPaymentDtoModel';
|
|
5
5
|
export * from './estatePriceInquiryDtoModel';
|
|
6
|
-
export * from './
|
|
7
|
-
export * from './
|
|
8
|
-
export * from './
|
|
6
|
+
export * from './estatePropertyFilterModel';
|
|
7
|
+
export * from './estatePropertyHistoryFilterModel';
|
|
8
|
+
export * from './estatePropertyFilterModel';
|
|
9
9
|
export * from './estatePropertyActionSendSmsDtoModel';
|
|
10
10
|
export * from './estateCustomerOrderActionSendSmsDtoModel';
|
|
11
|
-
export * from './
|
|
12
|
-
export * from './
|
|
11
|
+
export * from './estateAccountAgencyFilterModel';
|
|
12
|
+
export * from './estateAccountUserFilterModel';
|
|
13
|
+
export * from './estateCustomerOrderFilterModel';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class EstateAccountAgencyFilterModel extends FilterModel {
|
|
3
3
|
locationListIds: number[];
|
|
4
4
|
linkLocationWorkAreaIds: number[];
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class EstateAccountUserFilterModel extends FilterModel {
|
|
3
3
|
locationListIds: number[];
|
|
4
4
|
linkLocationWorkAreaIds: number[];
|
|
5
5
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
2
|
import { EstatePropertyDetailValueModel } from "../../entity/estate/estatePropertyDetailValueModel";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class EstateCustomerOrderFilterModel extends FilterModel {
|
|
4
4
|
caseCode: string;
|
|
5
5
|
linkPropertyTypeLanduseId: string;
|
|
6
6
|
linkPropertyTypeUsageId: string;
|
package/lib/models/dto/estate/{estatePropertySearchDtoModel.d.ts → estatePropertyFilterModel.d.ts}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
2
|
import { EstatePropertyDetailValueModel } from "../../entity/estate/estatePropertyDetailValueModel";
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class EstatePropertyFilterModel extends FilterModel {
|
|
4
4
|
caseCode: string;
|
|
5
5
|
linkPropertyTypeLanduseId: string;
|
|
6
6
|
linkPropertyTypeUsageId: string;
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
-
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
3
2
|
import { EstateAccountAgencyModel } from '../../models/entity/estate/estateAccountAgencyModel';
|
|
4
|
-
import { EstateAccountAgencySearchDtoModel } from '../../models/dto/estate/estateAccountAgencySearchDtoModel';
|
|
5
3
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
6
4
|
import { Observable } from 'rxjs';
|
|
5
|
+
import { EstateAccountAgencyFilterModel } from '../../models/dto/estate/estateAccountAgencyFilterModel';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class EstateAccountAgencyService extends ApiCmsServerBase<EstateAccountAgencyModel, string,
|
|
7
|
+
export declare class EstateAccountAgencyService extends ApiCmsServerBase<EstateAccountAgencyModel, string, EstateAccountAgencyFilterModel> {
|
|
9
8
|
getModuleControllerUrl(): string;
|
|
10
|
-
ServiceGetAllWithFilter(model:
|
|
9
|
+
ServiceGetAllWithFilter(model: EstateAccountAgencyFilterModel): Observable<ErrorExceptionResult<EstateAccountAgencyModel>>;
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountAgencyService, never>;
|
|
12
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountAgencyService>;
|
|
13
12
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
-
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
3
2
|
import { EstateAccountUserModel } from '../../models/entity/estate/estateAccountUserModel';
|
|
4
3
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
|
-
import {
|
|
5
|
+
import { EstateAccountUserFilterModel } from '../../models/dto/estate/estateAccountUserFilterModel';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class EstateAccountUserService extends ApiCmsServerBase<EstateAccountUserModel, string,
|
|
7
|
+
export declare class EstateAccountUserService extends ApiCmsServerBase<EstateAccountUserModel, string, EstateAccountUserFilterModel> {
|
|
9
8
|
getModuleControllerUrl(): string;
|
|
10
|
-
ServiceGetAllWithFilter(model:
|
|
9
|
+
ServiceGetAllWithFilter(model: EstateAccountUserFilterModel): Observable<ErrorExceptionResult<EstateAccountUserModel>>;
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountUserService, never>;
|
|
12
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountUserService>;
|
|
13
12
|
}
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
-
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
3
2
|
import { EstateCustomerOrderModel } from '../../models/entity/estate/estateCustomerOrderModel';
|
|
4
3
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
7
|
-
import { EstateCustomerOrderSearchDtoModel } from '../../models/dto/estate/estateCustomerOrderSearchDtoModel';
|
|
8
6
|
import { EstateCustomerOrderActionSendSmsDtoModel } from '../../models/dto/estate/estateCustomerOrderActionSendSmsDtoModel';
|
|
9
7
|
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
8
|
+
import { EstateCustomerOrderFilterModel } from '../../models/dto/estate/estateCustomerOrderFilterModel';
|
|
10
9
|
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class EstateCustomerOrderService extends ApiCmsServerBase<EstateCustomerOrderModel, string,
|
|
10
|
+
export declare class EstateCustomerOrderService extends ApiCmsServerBase<EstateCustomerOrderModel, string, EstateCustomerOrderFilterModel> {
|
|
12
11
|
getModuleControllerUrl(): string;
|
|
13
12
|
ServiceActionSendSms(model: EstateCustomerOrderActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
14
|
-
ServiceGetAllWithFilter(model:
|
|
15
|
-
ServiceGetAllWithResponsibleUserId(userId: number, model:
|
|
16
|
-
ServiceGetAllWithCoverPropertyId(propertyId: string, model:
|
|
17
|
-
ServiceGetAllWithCoverPropertyIdHaveHistory(propertyId: string, model:
|
|
18
|
-
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model:
|
|
13
|
+
ServiceGetAllWithFilter(model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
14
|
+
ServiceGetAllWithResponsibleUserId(userId: number, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
15
|
+
ServiceGetAllWithCoverPropertyId(propertyId: string, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
16
|
+
ServiceGetAllWithCoverPropertyIdHaveHistory(propertyId: string, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
17
|
+
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
19
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateCustomerOrderService, never>;
|
|
20
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateCustomerOrderService>;
|
|
21
20
|
}
|
|
@@ -1,30 +1,29 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
-
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
3
2
|
import { EstatePropertyModel } from '../../models/entity/estate/estatePropertyModel';
|
|
4
3
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
4
|
import { Observable } from 'rxjs';
|
|
6
5
|
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
7
6
|
import { CoreModuleReportAbuseDtoModel } from '../../models/dto/core-module/coreModuleReportAbuseDtoModel';
|
|
8
|
-
import { EstatePropertySearchDtoModel } from '../../models/dto/estate/estatePropertySearchDtoModel';
|
|
9
7
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
10
8
|
import { EstatePropertyActionSendSmsDtoModel } from '../../models/dto/estate/estatePropertyActionSendSmsDtoModel';
|
|
9
|
+
import { EstatePropertyFilterModel } from '../../models/dto/estate/estatePropertyFilterModel';
|
|
11
10
|
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string,
|
|
11
|
+
export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string, EstatePropertyFilterModel> {
|
|
13
12
|
getModuleControllerUrl(): string;
|
|
14
13
|
ServiceActionSendSmsToCustomerOrder(Id: string): Observable<ErrorExceptionResultBase>;
|
|
15
14
|
ServiceActionSendSms(model: EstatePropertyActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
16
15
|
ServiceFavoriteAdd(Id: string): Observable<ErrorExceptionResultBase>;
|
|
17
16
|
ServiceFavoriteRemove(Id: string): Observable<ErrorExceptionResultBase>;
|
|
18
|
-
ServiceFavoriteList(model:
|
|
17
|
+
ServiceFavoriteList(model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
19
18
|
ServiceReportAbuseAdd(model: CoreModuleReportAbuseDtoModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
20
|
-
ServiceReportAbuseList(model:
|
|
21
|
-
ServiceGetAllWithFilter(model:
|
|
22
|
-
ServiceGetAllWithBillboardId(BillboardId: string, model:
|
|
23
|
-
ServiceGetAllWithCoverCustomerOrderId(CustomerOrderId: string, model:
|
|
24
|
-
ServiceGetAllWithCoverCustomerOrderIdHaveHistory(CustomerOrderId: string, model:
|
|
25
|
-
ServiceGetAllWithCoverCustomerOrderIdExportFile(CustomerOrderId: string, model:
|
|
26
|
-
ServiceGetAllWithResponsibleUserId(userId: number, model:
|
|
27
|
-
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model:
|
|
19
|
+
ServiceReportAbuseList(model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
20
|
+
ServiceGetAllWithFilter(model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
21
|
+
ServiceGetAllWithBillboardId(BillboardId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
22
|
+
ServiceGetAllWithCoverCustomerOrderId(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
23
|
+
ServiceGetAllWithCoverCustomerOrderIdHaveHistory(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
24
|
+
ServiceGetAllWithCoverCustomerOrderIdExportFile(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
25
|
+
ServiceGetAllWithResponsibleUserId(userId: number, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
26
|
+
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model: EstatePropertyFilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
28
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyService, never>;
|
|
29
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstatePropertyService>;
|
|
30
29
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
-
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
3
2
|
import { EstatePropertyHistoryModel } from '../../models/entity/estate/estatePropertyHistoryModel';
|
|
4
|
-
import { EstatePropertyHistorySearchDtoModel } from '../../models/dto/estate/estatePropertyHistorySearchDtoModel';
|
|
5
3
|
import { Observable } from 'rxjs';
|
|
6
4
|
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
|
+
import { EstatePropertyHistoryFilterModel } from '../../models/dto/estate/estatePropertyHistoryFilterModel';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class EstatePropertyHistoryService extends ApiCmsServerBase<EstatePropertyHistoryModel, string,
|
|
7
|
+
export declare class EstatePropertyHistoryService extends ApiCmsServerBase<EstatePropertyHistoryModel, string, EstatePropertyHistoryFilterModel> {
|
|
9
8
|
getModuleControllerUrl(): string;
|
|
10
|
-
ServiceGetAllWithFilterOnDate(model:
|
|
9
|
+
ServiceGetAllWithFilterOnDate(model: EstatePropertyHistoryFilterModel): Observable<ErrorExceptionResult<EstatePropertyHistoryModel>>;
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyHistoryService, never>;
|
|
12
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstatePropertyHistoryService>;
|
|
13
12
|
}
|
package/package.json
CHANGED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export class EstateAccountAgencySearchDtoModel extends FilterModel {
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXN0YXRlQWNjb3VudEFnZW5jeVNlYXJjaER0b01vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnRrLWNtcy1hcGkvc3JjL2xpYi9tb2RlbHMvZHRvL2VzdGF0ZS9lc3RhdGVBY2NvdW50QWdlbmN5U2VhcmNoRHRvTW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBRTVELE1BQU0sT0FBTyxpQ0FBa0MsU0FBUSxXQUFXO0NBR2pFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRmlsdGVyTW9kZWwgfSBmcm9tIFwiLi4vLi4vZW50aXR5L2Jhc2UvZmlsdGVyTW9kZWxcIjtcclxuXHJcbmV4cG9ydCBjbGFzcyBFc3RhdGVBY2NvdW50QWdlbmN5U2VhcmNoRHRvTW9kZWwgZXh0ZW5kcyBGaWx0ZXJNb2RlbHtcclxuICBsb2NhdGlvbkxpc3RJZHM6bnVtYmVyW107XHJcbiAgbGlua0xvY2F0aW9uV29ya0FyZWFJZHM6bnVtYmVyW107XHJcbn1cclxuIl19
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export class EstateAccountUserSearchDtoModel extends FilterModel {
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXN0YXRlQWNjb3VudFVzZXJTZWFyY2hEdG9Nb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL250ay1jbXMtYXBpL3NyYy9saWIvbW9kZWxzL2R0by9lc3RhdGUvZXN0YXRlQWNjb3VudFVzZXJTZWFyY2hEdG9Nb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFFNUQsTUFBTSxPQUFPLCtCQUFnQyxTQUFRLFdBQVc7Q0FHL0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBGaWx0ZXJNb2RlbCB9IGZyb20gXCIuLi8uLi9lbnRpdHkvYmFzZS9maWx0ZXJNb2RlbFwiO1xyXG5cclxuZXhwb3J0IGNsYXNzIEVzdGF0ZUFjY291bnRVc2VyU2VhcmNoRHRvTW9kZWwgZXh0ZW5kcyBGaWx0ZXJNb2RlbHtcclxuICBsb2NhdGlvbkxpc3RJZHM6bnVtYmVyW107XHJcbiAgbGlua0xvY2F0aW9uV29ya0FyZWFJZHM6bnVtYmVyW107XHJcbn1cclxuIl19
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export class EstateCustomerOrderSearchDtoModel extends FilterModel {
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXN0YXRlQ3VzdG9tZXJPcmRlclNlYXJjaER0b01vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbnRrLWNtcy1hcGkvc3JjL2xpYi9tb2RlbHMvZHRvL2VzdGF0ZS9lc3RhdGVDdXN0b21lck9yZGVyU2VhcmNoRHRvTW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBRzVELE1BQU0sT0FBTyxpQ0FBa0MsU0FBUSxXQUFXO0NBbUJqRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZpbHRlck1vZGVsIH0gZnJvbSBcIi4uLy4uL2VudGl0eS9iYXNlL2ZpbHRlck1vZGVsXCI7XHJcbmltcG9ydCB7IEVzdGF0ZVByb3BlcnR5RGV0YWlsVmFsdWVNb2RlbCB9IGZyb20gXCIuLi8uLi9lbnRpdHkvZXN0YXRlL2VzdGF0ZVByb3BlcnR5RGV0YWlsVmFsdWVNb2RlbFwiO1xyXG5cclxuZXhwb3J0IGNsYXNzIEVzdGF0ZUN1c3RvbWVyT3JkZXJTZWFyY2hEdG9Nb2RlbCBleHRlbmRzIEZpbHRlck1vZGVsIHtcclxuICBjYXNlQ29kZTpzdHJpbmc7XHJcbiAgICBsaW5rUHJvcGVydHlUeXBlTGFuZHVzZUlkOiBzdHJpbmc7XHJcbiAgICBsaW5rUHJvcGVydHlUeXBlVXNhZ2VJZDogc3RyaW5nO1xyXG4gICAgbGlua0NvbnRyYWN0VHlwZUlkOiBzdHJpbmc7XHJcbiAgICBjcmVhdGVkWWFlcj86IG51bWJlcjtcclxuICAgIHBhcnRpdGlvbj86IG51bWJlcjtcclxuICAgIGFyZWE/OiBudW1iZXI7XHJcbiAgICBzYWxlUHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICBzYWxlUHJpY2VNYXg/OiBudW1iZXI7XHJcbiAgICByZW50UHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICByZW50UHJpY2VNYXg/OiBudW1iZXI7XHJcbiAgICBkZXBvc2l0UHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICBkZXBvc2l0UHJpY2VNYXg/OiBudW1iZXI7XHJcbiAgICBwZXJpb2RQcmljZU1pbj86IG51bWJlcjtcclxuICAgIHBlcmlvZFByaWNlTWF4PzogbnVtYmVyO1xyXG4gICAgbGlua0xvY2F0aW9uSWRzOiBudW1iZXJbXTtcclxuICAgIGxpbmtDb3JlQ3VycmVuY3lJZDogbnVtYmVyO1xyXG4gICAgcHJvcGVydHlEZXRhaWxWYWx1ZXM6IEVzdGF0ZVByb3BlcnR5RGV0YWlsVmFsdWVNb2RlbFtdO1xyXG59XHJcbiJdfQ==
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export class EstatePropertyHistorySearchDtoModel extends FilterModel {
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXN0YXRlUHJvcGVydHlIaXN0b3J5U2VhcmNoRHRvTW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9udGstY21zLWFwaS9zcmMvbGliL21vZGVscy9kdG8vZXN0YXRlL2VzdGF0ZVByb3BlcnR5SGlzdG9yeVNlYXJjaER0b01vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUU1RCxNQUFNLE9BQU8sbUNBQW9DLFNBQVEsV0FBVztDQUduRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZpbHRlck1vZGVsIH0gZnJvbSBcIi4uLy4uL2VudGl0eS9iYXNlL2ZpbHRlck1vZGVsXCI7XHJcblxyXG5leHBvcnQgY2xhc3MgRXN0YXRlUHJvcGVydHlIaXN0b3J5U2VhcmNoRHRvTW9kZWwgZXh0ZW5kcyBGaWx0ZXJNb2RlbCB7XHJcbiAgb25EYXRlVGltZUZyb206IERhdGU7XHJcbiAgb25EYXRlVGltZVRvOiBEYXRlO1xyXG59XHJcbiJdfQ==
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { FilterModel } from "../../entity/base/filterModel";
|
|
2
|
-
export class EstatePropertySearchDtoModel extends FilterModel {
|
|
3
|
-
}
|
|
4
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXN0YXRlUHJvcGVydHlTZWFyY2hEdG9Nb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL250ay1jbXMtYXBpL3NyYy9saWIvbW9kZWxzL2R0by9lc3RhdGUvZXN0YXRlUHJvcGVydHlTZWFyY2hEdG9Nb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFHNUQsTUFBTSxPQUFPLDRCQUE2QixTQUFRLFdBQVc7Q0FtQjVEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRmlsdGVyTW9kZWwgfSBmcm9tIFwiLi4vLi4vZW50aXR5L2Jhc2UvZmlsdGVyTW9kZWxcIjtcclxuaW1wb3J0IHsgRXN0YXRlUHJvcGVydHlEZXRhaWxWYWx1ZU1vZGVsIH0gZnJvbSBcIi4uLy4uL2VudGl0eS9lc3RhdGUvZXN0YXRlUHJvcGVydHlEZXRhaWxWYWx1ZU1vZGVsXCI7XHJcblxyXG5leHBvcnQgY2xhc3MgRXN0YXRlUHJvcGVydHlTZWFyY2hEdG9Nb2RlbCBleHRlbmRzIEZpbHRlck1vZGVsIHtcclxuICBjYXNlQ29kZTpzdHJpbmc7XHJcbiAgICBsaW5rUHJvcGVydHlUeXBlTGFuZHVzZUlkOiBzdHJpbmc7XHJcbiAgICBsaW5rUHJvcGVydHlUeXBlVXNhZ2VJZDogc3RyaW5nO1xyXG4gICAgbGlua0NvbnRyYWN0VHlwZUlkOiBzdHJpbmc7XHJcbiAgICBjcmVhdGVkWWFlcj86IG51bWJlcjtcclxuICAgIHBhcnRpdGlvbj86IG51bWJlcjtcclxuICAgIGFyZWE/OiBudW1iZXI7XHJcbiAgICBzYWxlUHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICBzYWxlUHJpY2VNYXg/OiBudW1iZXI7XHJcbiAgICByZW50UHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICByZW50UHJpY2VNYXg/OiBudW1iZXI7XHJcbiAgICBkZXBvc2l0UHJpY2VNaW4/OiBudW1iZXI7XHJcbiAgICBkZXBvc2l0UHJpY2VNYXg/OiBudW1iZXI7XHJcbiAgICBwZXJpb2RQcmljZU1pbj86IG51bWJlcjtcclxuICAgIHBlcmlvZFByaWNlTWF4PzogbnVtYmVyO1xyXG4gICAgbGlua0xvY2F0aW9uSWRzOiBudW1iZXJbXTtcclxuICAgIGxpbmtDb3JlQ3VycmVuY3lJZDogbnVtYmVyO1xyXG4gICAgcHJvcGVydHlEZXRhaWxWYWx1ZXM6IEVzdGF0ZVByb3BlcnR5RGV0YWlsVmFsdWVNb2RlbFtdO1xyXG59XHJcbiJdfQ==
|