ntk-cms-api 1.2.183 → 1.2.185
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 -1
- package/esm2020/lib/models/dto/estate/estateAccountAgencySearchDtoModel.mjs +4 -0
- package/esm2020/lib/models/dto/estate/estateAccountUserSearchDtoModel.mjs +4 -0
- package/esm2020/lib/models/entity/estate/estateAccountAgencyModel.mjs +1 -1
- package/esm2020/lib/models/entity/estate/estateAccountUserModel.mjs +1 -1
- package/esm2020/lib/models/entity/estate/estateCustomerOrderModel.mjs +1 -1
- package/esm2020/lib/service/estate/estateAccountAgency.service.mjs +17 -1
- package/esm2020/lib/service/estate/estateAccountUser.service.mjs +17 -1
- package/fesm2015/ntk-cms-api.mjs +35 -1
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +35 -1
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +2 -0
- package/lib/models/dto/estate/estateAccountAgencySearchDtoModel.d.ts +5 -0
- package/lib/models/dto/estate/estateAccountUserSearchDtoModel.d.ts +5 -0
- package/lib/models/entity/estate/estateAccountAgencyModel.d.ts +1 -0
- package/lib/models/entity/estate/estateAccountUserModel.d.ts +1 -0
- package/lib/models/entity/estate/estateCustomerOrderModel.d.ts +1 -0
- package/lib/service/estate/estateAccountAgency.service.d.ts +4 -0
- package/lib/service/estate/estateAccountUser.service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -8,3 +8,5 @@ export * from './estatePropertyHistorySearchDtoModel';
|
|
|
8
8
|
export * from './estateCustomerOrderSearchDtoModel';
|
|
9
9
|
export * from './estatePropertyActionSendSmsDtoModel';
|
|
10
10
|
export * from './estateCustomerOrderActionSendSmsDtoModel';
|
|
11
|
+
export * from './estateAccountAgencySearchDtoModel';
|
|
12
|
+
export * from './estateAccountUserSearchDtoModel';
|
|
@@ -8,6 +8,7 @@ export declare class EstateAccountAgencyModel extends BaseModuleEntity<string> {
|
|
|
8
8
|
linkLocationId?: number;
|
|
9
9
|
linkLocationIdTitle: string;
|
|
10
10
|
linkLocationIdParentTitle: string;
|
|
11
|
+
linkLocationWorkAreaIds: number[];
|
|
11
12
|
geolocationlatitude?: number;
|
|
12
13
|
geolocationlongitude?: number;
|
|
13
14
|
address: string;
|
|
@@ -7,6 +7,7 @@ export declare class EstateAccountUserModel extends BaseModuleEntity<string> {
|
|
|
7
7
|
linkLocationId?: number;
|
|
8
8
|
linkLocationIdTitle: string;
|
|
9
9
|
linkLocationIdParentTitle: string;
|
|
10
|
+
linkLocationWorkAreaIds: number[];
|
|
10
11
|
geolocationlatitude?: number;
|
|
11
12
|
geolocationlongitude?: number;
|
|
12
13
|
dateManufacture?: Date;
|
|
@@ -42,6 +42,7 @@ export declare class EstateCustomerOrderModel extends BaseModuleEntity<string> {
|
|
|
42
42
|
lastResultRowCount?: number;
|
|
43
43
|
resultSortColumn: string;
|
|
44
44
|
resultSortType: EnumSortType;
|
|
45
|
+
accessPublicView: boolean;
|
|
45
46
|
/**عجله در خرید*/
|
|
46
47
|
scoreRushToBuy: number;
|
|
47
48
|
/**تصمیم در خرید*/
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
2
|
import { EstateAccountAgencyModel } from '../../models/entity/estate/estateAccountAgencyModel';
|
|
3
|
+
import { EstateAccountAgencySearchDtoModel } from '../../models/dto/estate/estateAccountAgencySearchDtoModel';
|
|
4
|
+
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
5
|
+
import { Observable } from 'rxjs';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
export declare class EstateAccountAgencyService extends ApiCmsServerBase<EstateAccountAgencyModel, string> {
|
|
5
8
|
getModuleControllerUrl(): string;
|
|
9
|
+
ServiceGetAllWithFilter(model: EstateAccountAgencySearchDtoModel): Observable<ErrorExceptionResult<EstateAccountAgencyModel>>;
|
|
6
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountAgencyService, never>;
|
|
7
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountAgencyService>;
|
|
8
12
|
}
|
|
@@ -1,8 +1,12 @@
|
|
|
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
|
+
import { EstateAccountUserSearchDtoModel } from '../../models/dto/estate/estateAccountUserSearchDtoModel';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
export declare class EstateAccountUserService extends ApiCmsServerBase<EstateAccountUserModel, string> {
|
|
5
8
|
getModuleControllerUrl(): string;
|
|
9
|
+
ServiceGetAllWithFilter(model: EstateAccountUserSearchDtoModel): Observable<ErrorExceptionResult<EstateAccountUserModel>>;
|
|
6
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountUserService, never>;
|
|
7
11
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountUserService>;
|
|
8
12
|
}
|