ntk-cms-api 1.2.54 → 1.2.56
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/bundles/ntk-cms-api.umd.js +95 -5
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/models/entity/estate/_export.js +2 -1
- package/esm2015/lib/models/entity/estate/estateAccountAgencyTypeUserModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estateActivityTypeModel.js +3 -0
- package/esm2015/lib/models/entity/estate/estatePropertyHistoryModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estatePropertyProjectModel.js +1 -1
- package/esm2015/lib/models/entity/sms/_export.js +3 -1
- package/esm2015/lib/models/entity/sms/smsLogOutBoxQueueModel.js +1 -1
- package/esm2015/lib/models/entity/sms/smsLogOutBoxScheduleRunInfoModel.js +3 -0
- package/esm2015/lib/models/entity/sms/smsLogOutBoxTaskSchedulerModel.js +4 -0
- package/esm2015/lib/models/enums/_export.js +2 -1
- package/esm2015/lib/models/enums/estate/_export.js +3 -2
- package/esm2015/lib/models/enums/estate/activityStatusEnum.js +7 -0
- package/esm2015/lib/models/enums/estate/estateUserTypeEnum.js +7 -0
- package/esm2015/lib/service/estate/_export.js +2 -1
- package/esm2015/lib/service/estate/estateActivityType.service.js +11 -0
- package/esm2015/lib/service/sms/_export.js +2 -1
- package/esm2015/lib/service/sms/smsLogOutBoxTaskScheduler.service.js +34 -0
- package/fesm2015/ntk-cms-api.js +71 -7
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/_export.d.ts +1 -0
- package/lib/models/entity/estate/estateAccountAgencyTypeUserModel.d.ts +2 -2
- package/lib/models/entity/estate/estateActivityTypeModel.d.ts +6 -0
- package/lib/models/entity/estate/estatePropertyHistoryModel.d.ts +7 -0
- package/lib/models/entity/estate/estatePropertyProjectModel.d.ts +19 -0
- package/lib/models/entity/sms/_export.d.ts +2 -0
- package/lib/models/entity/sms/smsLogOutBoxQueueModel.d.ts +2 -0
- package/lib/models/entity/sms/smsLogOutBoxScheduleRunInfoModel.d.ts +8 -0
- package/lib/models/entity/sms/smsLogOutBoxTaskSchedulerModel.d.ts +22 -0
- package/lib/models/enums/_export.d.ts +1 -0
- package/lib/models/enums/estate/_export.d.ts +2 -1
- package/lib/models/enums/estate/activityStatusEnum.d.ts +5 -0
- package/lib/models/enums/estate/{enumEstateUserType.d.ts → estateUserTypeEnum.d.ts} +1 -1
- package/lib/service/estate/_export.d.ts +1 -0
- package/lib/service/estate/estateActivityType.service.d.ts +5 -0
- package/lib/service/sms/_export.d.ts +1 -0
- package/lib/service/sms/smsLogOutBoxTaskScheduler.service.d.ts +10 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
- package/esm2015/lib/models/enums/estate/enumEstateUserType.js +0 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EstateUserTypeEnum } from '../../enums/estate/estateUserTypeEnum';
|
|
2
2
|
import { BaseModuleEntity } from '../base/baseModuleEntity';
|
|
3
3
|
export declare class EstateAccountAgencyTypeUserModel extends BaseModuleEntity<string> {
|
|
4
|
-
accountUserType:
|
|
4
|
+
accountUserType: EstateUserTypeEnum;
|
|
5
5
|
linkAccountUserId: string;
|
|
6
6
|
linkAccountAgencyId: string;
|
|
7
7
|
linkPropertyId: string;
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
import { ActivityStatusEnum } from '../../enums/estate/activityStatusEnum';
|
|
1
2
|
import { BaseModuleEntity } from '../base/baseModuleEntity';
|
|
3
|
+
import { EstateActivityTypeModel } from './estateActivityTypeModel';
|
|
2
4
|
export declare class EstatePropertyHistoryModel extends BaseModuleEntity<string> {
|
|
3
5
|
title: string;
|
|
4
6
|
linkPropertyId: string;
|
|
5
7
|
linkFileIds: string;
|
|
8
|
+
activityType: EstateActivityTypeModel;
|
|
9
|
+
activityStatus: ActivityStatusEnum;
|
|
10
|
+
appointmentDateFrom: Date;
|
|
11
|
+
appointmentDateTo: Date;
|
|
12
|
+
description: string;
|
|
6
13
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { BaseModuleEntity } from '../base/baseModuleEntity';
|
|
2
2
|
export declare class EstatePropertyProjectModel extends BaseModuleEntity<string> {
|
|
3
3
|
title: string;
|
|
4
|
+
linkCmsUserId?: number;
|
|
5
|
+
mainAdminRecordStatus: string;
|
|
4
6
|
description: string;
|
|
7
|
+
address: string;
|
|
5
8
|
body: string;
|
|
6
9
|
geolocationlatitude?: number;
|
|
7
10
|
geolocationlongitude?: number;
|
|
@@ -15,13 +18,29 @@ export declare class EstatePropertyProjectModel extends BaseModuleEntity<string>
|
|
|
15
18
|
scoreClick: number;
|
|
16
19
|
scoreSumPercent: number;
|
|
17
20
|
viewCount: number;
|
|
21
|
+
viewConfigHiddenInList: boolean;
|
|
18
22
|
favorited: boolean;
|
|
19
23
|
source: string;
|
|
20
24
|
fromDate: Date;
|
|
21
25
|
expireDate: Date;
|
|
26
|
+
linkLocationCountryId: number;
|
|
22
27
|
linkMainImageIdSrc: string;
|
|
23
28
|
linkFilePodcastIdSrc: string;
|
|
24
29
|
linkFileMovieIdSrc: string;
|
|
25
30
|
linkFileIdsSrc: string[];
|
|
26
31
|
linkExtraImageIdsSrc: string[];
|
|
32
|
+
uploadFileGUID: string[];
|
|
33
|
+
urlViewContent: string;
|
|
34
|
+
urlViewContentQRCodeBase64: string;
|
|
35
|
+
linkLocationCountryIdTitle: string;
|
|
36
|
+
linkLocationIdTitle: string;
|
|
37
|
+
linkLocationIdParentTitle: string;
|
|
38
|
+
aboutAgentTel: string;
|
|
39
|
+
aboutAgentMobile: string;
|
|
40
|
+
aboutCustomerTel: string;
|
|
41
|
+
aboutCustomerMobile: string;
|
|
42
|
+
/**Action */
|
|
43
|
+
actionSendSmsToCustomer: boolean;
|
|
44
|
+
actionSendSmsToAgent: boolean;
|
|
45
|
+
actionSendSmsToCustomerOrder: boolean;
|
|
27
46
|
}
|
|
@@ -21,3 +21,5 @@ export * from './smsMainCustomerCreditModel';
|
|
|
21
21
|
export * from './smsMainMessageCategoryModel';
|
|
22
22
|
export * from './smsMainMessageContentModel';
|
|
23
23
|
export * from './smsLogOutBoxQueueModel';
|
|
24
|
+
export * from './smsLogOutBoxTaskSchedulerModel';
|
|
25
|
+
export * from './smsLogOutBoxScheduleRunInfoModel';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { BaseModuleEntity } from '../base/baseModuleEntity';
|
|
2
|
+
import { SmsLogOutBoxScheduleRunInfoModel } from './smsLogOutBoxScheduleRunInfoModel';
|
|
2
3
|
export declare class SmsLogOutBoxQueueModel extends BaseModuleEntity<string> {
|
|
3
4
|
message: string;
|
|
4
5
|
isFlash: boolean;
|
|
@@ -20,4 +21,5 @@ export declare class SmsLogOutBoxQueueModel extends BaseModuleEntity<string> {
|
|
|
20
21
|
queueCompleted: boolean;
|
|
21
22
|
queueCompleteDate: Date;
|
|
22
23
|
queueLockerMicroservice: string;
|
|
24
|
+
scheduleRunInfos: SmsLogOutBoxScheduleRunInfoModel[];
|
|
23
25
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BaseModuleEntity } from '../base/baseModuleEntity';
|
|
2
|
+
import { SmsLogOutBoxScheduleRunInfoModel } from './smsLogOutBoxScheduleRunInfoModel';
|
|
3
|
+
export declare class SmsLogOutBoxTaskSchedulerModel extends BaseModuleEntity<string> {
|
|
4
|
+
linkApiPathId: string;
|
|
5
|
+
linkFromNumber: string;
|
|
6
|
+
toNumbers: string;
|
|
7
|
+
toContactCategories: string[];
|
|
8
|
+
toContactContents: string[];
|
|
9
|
+
message: string;
|
|
10
|
+
sendByQueue: boolean;
|
|
11
|
+
isFlash: boolean;
|
|
12
|
+
scheduleSendStart: Date;
|
|
13
|
+
scheduleSendExpire: Date;
|
|
14
|
+
scheduleSendAllowNextRun: Date;
|
|
15
|
+
scheduleLockerId: string;
|
|
16
|
+
scheduleLockerExpire?: Date;
|
|
17
|
+
ScheduleLockedRun?: Date;
|
|
18
|
+
scheduleCron: string;
|
|
19
|
+
scheduleCountRun: number;
|
|
20
|
+
scheduleLockedRunIsSuccess: boolean;
|
|
21
|
+
scheduleRunInfos: SmsLogOutBoxScheduleRunInfoModel[];
|
|
22
|
+
}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './estateUserTypeEnum';
|
|
2
|
+
export * from './activityStatusEnum';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
+
import { EstateActivityTypeModel } from '../../models/entity/estate/estateActivityTypeModel';
|
|
3
|
+
export declare class EstateActivityTypeService extends ApiCmsServerBase<EstateActivityTypeModel, string> {
|
|
4
|
+
getModuleControllerUrl(): string;
|
|
5
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ApiCmsServerBase } from '../base/apiCmsServerBase.service';
|
|
2
|
+
import { SmsLogOutBoxTaskSchedulerModel } from '../../models/entity/sms/smsLogOutBoxTaskSchedulerModel';
|
|
3
|
+
import { ErrorExceptionResult } from '../../models/entity/base/errorExceptionResult';
|
|
4
|
+
import { Observable } from 'rxjs';
|
|
5
|
+
import { FilterModel } from '../../models/entity/base/filterModel';
|
|
6
|
+
export declare class SmsLogOutBoxTaskSchedulerService extends ApiCmsServerBase<SmsLogOutBoxTaskSchedulerModel, string> {
|
|
7
|
+
getModuleControllerUrl(): string;
|
|
8
|
+
ServiceGetAllReadyToSend(model: FilterModel): Observable<ErrorExceptionResult<SmsLogOutBoxTaskSchedulerModel>>;
|
|
9
|
+
ServiceGetAllSending(model: FilterModel): Observable<ErrorExceptionResult<SmsLogOutBoxTaskSchedulerModel>>;
|
|
10
|
+
}
|