ntk-cms-api 1.2.179 → 1.2.181
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/estateCustomerOrderActionSendSmsDtoModel.mjs +3 -0
- package/esm2020/lib/models/dto/estate/estatePropertyActionSendSmsDtoModel.mjs +3 -0
- package/esm2020/lib/models/entity/estate/_export.mjs +3 -1
- package/esm2020/lib/models/entity/estate/estateAccountAgencyWorkAreaModel.mjs +5 -0
- package/esm2020/lib/models/entity/estate/estateAccountUserWorkAreaModel.mjs +5 -0
- package/esm2020/lib/models/entity/estate/estateCustomerOrderModel.mjs +1 -1
- package/esm2020/lib/models/entity/estate/estatePropertyModel.mjs +1 -1
- package/esm2020/lib/service/estate/_export.mjs +3 -1
- package/esm2020/lib/service/estate/estateAccountAgencyWorkArea.service.mjs +14 -0
- package/esm2020/lib/service/estate/estateAccountUserWorkArea.service.mjs +14 -0
- package/esm2020/lib/service/estate/estateCustomerOrder.service.mjs +12 -1
- package/esm2020/lib/service/estate/estateProperty.service.mjs +12 -1
- package/fesm2015/ntk-cms-api.mjs +59 -1
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +59 -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/estateCustomerOrderActionSendSmsDtoModel.d.ts +15 -0
- package/lib/models/dto/estate/estatePropertyActionSendSmsDtoModel.d.ts +10 -0
- package/lib/models/entity/estate/_export.d.ts +2 -0
- package/lib/models/entity/estate/estateAccountAgencyWorkAreaModel.d.ts +5 -0
- package/lib/models/entity/estate/estateAccountUserWorkAreaModel.d.ts +5 -0
- package/lib/models/entity/estate/estateCustomerOrderModel.d.ts +0 -3
- package/lib/models/entity/estate/estatePropertyModel.d.ts +0 -7
- package/lib/service/estate/_export.d.ts +2 -0
- package/lib/service/estate/estateAccountAgencyWorkArea.service.d.ts +8 -0
- package/lib/service/estate/estateAccountUserWorkArea.service.d.ts +8 -0
- package/lib/service/estate/estateCustomerOrder.service.d.ts +3 -0
- package/lib/service/estate/estateProperty.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -6,3 +6,5 @@ export * from './estatePriceInquiryDtoModel';
|
|
|
6
6
|
export * from './estatePropertySearchDtoModel';
|
|
7
7
|
export * from './estatePropertyHistorySearchDtoModel';
|
|
8
8
|
export * from './estateCustomerOrderSearchDtoModel';
|
|
9
|
+
export * from './estatePropertyActionSendSmsDtoModel';
|
|
10
|
+
export * from './estateCustomerOrderActionSendSmsDtoModel';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare class EstateCustomerOrderActionSendSmsDtoModel {
|
|
2
|
+
id: string;
|
|
3
|
+
/**Action */
|
|
4
|
+
actionSendSmsToMe: boolean;
|
|
5
|
+
actionSendSmsToEstateCustomer: boolean;
|
|
6
|
+
actionSendSmsToEstateAgency: boolean;
|
|
7
|
+
actionSendSmsToEstateUser: boolean;
|
|
8
|
+
actionSendSmsToContactNumber: string;
|
|
9
|
+
/**Action */
|
|
10
|
+
actionSendSmsToAreaEstateAgency: boolean;
|
|
11
|
+
actionSendSmsToAreaEstateUser: boolean;
|
|
12
|
+
/**Action */
|
|
13
|
+
actionSendSmsToAllAreaEstateAgency: boolean;
|
|
14
|
+
actionSendSmsToAllAreaEstateUser: boolean;
|
|
15
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class EstatePropertyActionSendSmsDtoModel {
|
|
2
|
+
id: string;
|
|
3
|
+
/**Action */
|
|
4
|
+
actionSendSmsToMe: boolean;
|
|
5
|
+
actionSendSmsToEstateCustomer: boolean;
|
|
6
|
+
actionSendSmsToEstateAgency: boolean;
|
|
7
|
+
actionSendSmsToEstateUser: boolean;
|
|
8
|
+
actionSendSmsToCustomerOrder: boolean;
|
|
9
|
+
actionSendSmsToContactNumber: string;
|
|
10
|
+
}
|
|
@@ -29,3 +29,5 @@ export * from './estateCustomerOrderResultModel';
|
|
|
29
29
|
export * from './estateCustomerCategoryModel';
|
|
30
30
|
export * from './estatePropertySupplierCategoryModel';
|
|
31
31
|
export * from './estatePropertySupplierModel';
|
|
32
|
+
export * from './estateAccountUserWorkAreaModel';
|
|
33
|
+
export * from './estateAccountAgencyWorkAreaModel';
|
|
@@ -74,11 +74,4 @@ export declare class EstatePropertyModel extends BaseModuleEntity<string> {
|
|
|
74
74
|
linkLocationIdTitle: string;
|
|
75
75
|
linkLocationIdParentTitle: string;
|
|
76
76
|
favorited: boolean;
|
|
77
|
-
/**Action */
|
|
78
|
-
actionSendSmsToMe: boolean;
|
|
79
|
-
actionSendSmsToEstateCustomer: boolean;
|
|
80
|
-
actionSendSmsToEstateAgency: boolean;
|
|
81
|
-
actionSendSmsToEstateUser: boolean;
|
|
82
|
-
actionSendSmsToCustomerOrder: boolean;
|
|
83
|
-
actionSendSmsToContactNumber: string;
|
|
84
77
|
}
|
|
@@ -29,3 +29,5 @@ export * from './estatePropertyExpertPrice.service';
|
|
|
29
29
|
export * from './estateCustomerOrderResult.service';
|
|
30
30
|
export * from './estateCustomerCategory.service';
|
|
31
31
|
export * from './estatePropertySupplierCategory.service';
|
|
32
|
+
export * from './estateAccountUserWorkArea.service';
|
|
33
|
+
export * from './estateAccountAgencyWorkArea.service';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
+
import { EstateAccountAgencyWorkAreaModel } from '../../models/entity/estate/estateAccountAgencyWorkAreaModel';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class EstateAccountAgencyWorkAreaService extends ApiCmsServerBase<EstateAccountAgencyWorkAreaModel, string> {
|
|
5
|
+
getModuleControllerUrl(): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountAgencyWorkAreaService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountAgencyWorkAreaService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
+
import { EstateAccountUserWorkAreaModel } from '../../models/entity/estate/estateAccountUserWorkAreaModel';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class EstateAccountUserWorkAreaService extends ApiCmsServerBase<EstateAccountUserWorkAreaModel, string> {
|
|
5
|
+
getModuleControllerUrl(): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EstateAccountUserWorkAreaService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EstateAccountUserWorkAreaService>;
|
|
8
|
+
}
|
|
@@ -5,9 +5,12 @@ import { Observable } from 'rxjs';
|
|
|
5
5
|
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
6
6
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
7
7
|
import { EstateCustomerOrderSearchDtoModel } from '../../models/dto/estate/estateCustomerOrderSearchDtoModel';
|
|
8
|
+
import { EstateCustomerOrderActionSendSmsDtoModel } from '../../models/dto/estate/estateCustomerOrderActionSendSmsDtoModel';
|
|
9
|
+
import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptionResultBase';
|
|
8
10
|
import * as i0 from "@angular/core";
|
|
9
11
|
export declare class EstateCustomerOrderService extends ApiCmsServerBase<EstateCustomerOrderModel, string> {
|
|
10
12
|
getModuleControllerUrl(): string;
|
|
13
|
+
ServiceActionSendSms(model: EstateCustomerOrderActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
11
14
|
ServiceGetAllWithFilter(model: EstateCustomerOrderSearchDtoModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
12
15
|
ServiceGetAllWithResponsibleUserId(userId: number, model: FilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
13
16
|
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model: FilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
@@ -7,10 +7,12 @@ import { ErrorExceptionResultBase } from '../../models/entity/base/errorExceptio
|
|
|
7
7
|
import { CoreModuleReportAbuseDtoModel } from '../../models/dto/core-module/coreModuleReportAbuseDtoModel';
|
|
8
8
|
import { EstatePropertySearchDtoModel } from '../../models/dto/estate/estatePropertySearchDtoModel';
|
|
9
9
|
import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorExceptionResultExportFile';
|
|
10
|
+
import { EstatePropertyActionSendSmsDtoModel } from '../../models/dto/estate/estatePropertyActionSendSmsDtoModel';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string> {
|
|
12
13
|
getModuleControllerUrl(): string;
|
|
13
14
|
ServiceActionSendSmsToCustomerOrder(Id: string): Observable<ErrorExceptionResultBase>;
|
|
15
|
+
ServiceActionSendSms(model: EstatePropertyActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
14
16
|
ServiceFavoriteAdd(Id: string): Observable<ErrorExceptionResultBase>;
|
|
15
17
|
ServiceFavoriteRemove(Id: string): Observable<ErrorExceptionResultBase>;
|
|
16
18
|
ServiceFavoriteList(model: FilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|