spartaxx.businessmodels 1.0.155 → 1.0.157
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.ts +22 -17
- package/CCC/CCCModel.ts +3 -1
- package/CCC/ClientInfo.ts +18 -3
- package/CCC/GenarateClientPackageParam.js +2 -0
- package/CCC/GenarateClientPackageParam.ts +7 -0
- package/Scheduler/ManageScheduler.js +2 -0
- package/Scheduler/ManageScheduler.ts +16 -0
- package/Scheduler/SchedulerModels.js +2 -0
- package/Scheduler/SchedulerModels.ts +5 -0
- package/package.json +1 -1
package/CCC/AccountInfo.ts
CHANGED
@@ -1,19 +1,24 @@
|
|
1
1
|
export interface AccountInfo {
|
2
|
-
Taxyear?: number
|
3
|
-
AccountNumber?: number
|
4
|
-
PropertyType?: string
|
5
|
-
CountyName?: string
|
6
|
-
AccountStatus?: string
|
7
|
-
PropertyAddress?: string
|
8
|
-
CadLegalName?: string
|
9
|
-
PriorYear2?: number
|
10
|
-
PriorYear2NoticedValue?: string
|
11
|
-
PriorYear2FinalValue?: string
|
12
|
-
PriorYear1?: number
|
13
|
-
PriorYear1NoticedValue?: string
|
14
|
-
PriorYear1FinalValue?: string
|
15
|
-
NoticedValue?: string
|
16
|
-
FinalValue?: string
|
17
|
-
StandardContingency?: string
|
18
|
-
LitigationContingency?: string
|
2
|
+
Taxyear?: number;
|
3
|
+
AccountNumber?: number;
|
4
|
+
PropertyType?: string;
|
5
|
+
CountyName?: string;
|
6
|
+
AccountStatus?: string;
|
7
|
+
PropertyAddress?: string;
|
8
|
+
CadLegalName?: string;
|
9
|
+
PriorYear2?: number;
|
10
|
+
PriorYear2NoticedValue?: string;
|
11
|
+
PriorYear2FinalValue?: string;
|
12
|
+
PriorYear1?: number;
|
13
|
+
PriorYear1NoticedValue?: string;
|
14
|
+
PriorYear1FinalValue?: string;
|
15
|
+
NoticedValue?: string;
|
16
|
+
FinalValue?: string;
|
17
|
+
StandardContingency?: string;
|
18
|
+
LitigationContingency?: string;
|
19
|
+
OwnerName?: string;
|
20
|
+
CountyState?: string;
|
21
|
+
OwnerEmail?: string;
|
22
|
+
OwnerPhone?: string;
|
23
|
+
OwnerAddress?: string;
|
19
24
|
}
|
package/CCC/CCCModel.ts
CHANGED
@@ -9,6 +9,7 @@ import { CCCTemplateData } from "./CCCTemplateData";
|
|
9
9
|
import { Client } from "./Client";
|
10
10
|
import { BlastCountyPriority } from "./BlastCountyPriority";
|
11
11
|
import { BlastCountyPriorityResults } from "./BlastCountyPriorityResults";
|
12
|
+
import { GenarateClientPackageParam } from "./GenarateClientPackageParam";
|
12
13
|
|
13
14
|
export {
|
14
15
|
ScoreCardDetails,
|
@@ -21,5 +22,6 @@ export {
|
|
21
22
|
CCCTemplateData,
|
22
23
|
Client,
|
23
24
|
BlastCountyPriority,
|
24
|
-
BlastCountyPriorityResults
|
25
|
+
BlastCountyPriorityResults,
|
26
|
+
GenarateClientPackageParam
|
25
27
|
}
|
package/CCC/ClientInfo.ts
CHANGED
@@ -41,12 +41,12 @@ export interface ClientInfo {
|
|
41
41
|
CompanyEmail?: string;
|
42
42
|
CompanyPhone?: string;
|
43
43
|
CompanyZip?: string;
|
44
|
-
CompanyFax
|
44
|
+
CompanyFax?: string;
|
45
45
|
CompanyWebsite?: string;
|
46
46
|
AppraisalDistrictName?: string;
|
47
47
|
AppraisalDistrictPhone?: string;
|
48
48
|
AppraisalAddress?: string;
|
49
|
-
PropertyAddress?: string
|
49
|
+
PropertyAddress?: string;
|
50
50
|
AgentName?: string;
|
51
51
|
AgentCode?: string;
|
52
52
|
AgentPhone?: string;
|
@@ -83,6 +83,21 @@ export interface ClientInfo {
|
|
83
83
|
RemodelYear?: string;
|
84
84
|
CommercialLink?: string;
|
85
85
|
ResidentialLink?: string;
|
86
|
+
ClientName?: string;
|
87
|
+
ClientSignature?: string;
|
88
|
+
CompanyName?: string;
|
89
|
+
Title?: string;
|
90
|
+
ClientPhone?: string;
|
91
|
+
ClientEmail?: string;
|
92
|
+
ClientAddress?: string;
|
93
|
+
ClientCity?: string;
|
94
|
+
ClientState?: string;
|
95
|
+
ClientPinCode?: string;
|
96
|
+
CompleteCompanyAddress?: string;
|
97
|
+
Day?: string;
|
98
|
+
Month?: string;
|
99
|
+
Year?: string;
|
100
|
+
Terms?: string;
|
86
101
|
|
87
|
-
AccountInfo?: AccountInfo[]
|
102
|
+
AccountInfo?: AccountInfo[];
|
88
103
|
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export interface ManageScheduler{
|
2
|
+
Id?: number;
|
3
|
+
ModuleId?: number;
|
4
|
+
Name?: string;
|
5
|
+
Recurrence?: number;
|
6
|
+
OccurrenceOption?: string;
|
7
|
+
StartDate?: string;
|
8
|
+
EndDate?: string;
|
9
|
+
StartTime?: string;
|
10
|
+
Weekday?: string;
|
11
|
+
OnDay?: number;
|
12
|
+
OnTheOccurrence?: string;
|
13
|
+
OnTheWeekday?: string;
|
14
|
+
CronSyntax?: string;
|
15
|
+
UserId?: number;
|
16
|
+
}
|