ntk-cms-api 18.3.439 → 18.3.440
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/estateCustomerOrder.service.mjs +19 -1
- package/esm2020/lib/service/estate/estateProperty.service.mjs +19 -1
- package/esm2020/lib/service/estate/estatePropertyHistory.service.mjs +20 -1
- package/fesm2015/ntk-cms-api.mjs +51 -0
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +51 -0
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/estate/estateCustomerOrder.service.d.ts +3 -0
- package/lib/service/estate/estateProperty.service.d.ts +3 -0
- package/lib/service/estate/estatePropertyHistory.service.d.ts +5 -0
- package/package.json +1 -1
|
@@ -6,10 +6,13 @@ import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorEx
|
|
|
6
6
|
import { EstateCustomerOrderModel } from '../../models/entity/estate/estateCustomerOrderModel';
|
|
7
7
|
import { EstateCustomerOrderFilterModel } from '../../models/filters/estate/estateCustomerOrderFilterModel';
|
|
8
8
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
9
|
+
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
10
|
+
import { CoreUserModel } from '../../models/entity/core-main/coreUserModel';
|
|
9
11
|
import * as i0 from "@angular/core";
|
|
10
12
|
export declare class EstateCustomerOrderService extends ApiCmsServerBase<EstateCustomerOrderModel, string, EstateCustomerOrderFilterModel> {
|
|
11
13
|
getModuleControllerUrl(): string;
|
|
12
14
|
ServiceActionSendSms(model: EstateCustomerOrderActionSendSmsDtoModel): Observable<ErrorExceptionResultBase>;
|
|
15
|
+
ServiceGetAllResponsibleUserId(id: string, model: FilterModel): Observable<ErrorExceptionResult<CoreUserModel>>;
|
|
13
16
|
ServiceGetAllWithResponsibleUserId(userId: number, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
14
17
|
ServiceGetAllWithCoverPropertyId(propertyId: string, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
15
18
|
ServiceGetAllWithCoverPropertyIdHaveHistory(propertyId: string, model: EstateCustomerOrderFilterModel): Observable<ErrorExceptionResult<EstateCustomerOrderModel>>;
|
|
@@ -7,6 +7,8 @@ import { ErrorExceptionResultExportFile } from '../../models/entity/base/errorEx
|
|
|
7
7
|
import { EstatePropertyModel } from '../../models/entity/estate/estatePropertyModel';
|
|
8
8
|
import { EstatePropertyFilterModel } from '../../models/filters/estate/estatePropertyFilterModel';
|
|
9
9
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
10
|
+
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
11
|
+
import { CoreUserModel } from '../../models/entity/core-main/coreUserModel';
|
|
10
12
|
import * as i0 from "@angular/core";
|
|
11
13
|
export declare class EstatePropertyService extends ApiCmsServerBase<EstatePropertyModel, string, EstatePropertyFilterModel> {
|
|
12
14
|
getModuleControllerUrl(): string;
|
|
@@ -23,6 +25,7 @@ export declare class EstatePropertyService extends ApiCmsServerBase<EstateProper
|
|
|
23
25
|
ServiceGetAllWithCoverCustomerOrderId(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
24
26
|
ServiceGetAllWithCoverCustomerOrderIdHaveHistory(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
25
27
|
ServiceGetAllWithCoverCustomerOrderIdExportFile(CustomerOrderId: string, model: EstatePropertyFilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
28
|
+
ServiceGetAllResponsibleUserId(id: string, model: FilterModel): Observable<ErrorExceptionResult<CoreUserModel>>;
|
|
26
29
|
ServiceGetAllWithResponsibleUserId(userId: number, model: EstatePropertyFilterModel): Observable<ErrorExceptionResult<EstatePropertyModel>>;
|
|
27
30
|
ServiceGetAllWithResponsibleUserIdExportFile(userId: number, model: EstatePropertyFilterModel): Observable<ErrorExceptionResultExportFile>;
|
|
28
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyService, never>;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import { EstatePropertyHistoryModel } from '../../models/entity/estate/estatePropertyHistoryModel';
|
|
2
2
|
import { EstatePropertyHistoryFilterModel } from '../../models/filters/estate/estatePropertyHistoryFilterModel';
|
|
3
3
|
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
6
|
+
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
7
|
+
import { CoreUserModel } from '../../models/entity/core-main/coreUserModel';
|
|
4
8
|
import * as i0 from "@angular/core";
|
|
5
9
|
export declare class EstatePropertyHistoryService extends ApiCmsServerBase<EstatePropertyHistoryModel, string, EstatePropertyHistoryFilterModel> {
|
|
6
10
|
getModuleControllerUrl(): string;
|
|
11
|
+
ServiceGetAllResponsibleUserId(id: string, model: FilterModel): Observable<ErrorExceptionResult<CoreUserModel>>;
|
|
7
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<EstatePropertyHistoryService, never>;
|
|
8
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<EstatePropertyHistoryService>;
|
|
9
14
|
}
|