spartaxx.businessmodels 1.0.145 → 1.0.147
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.ts +7 -1
- package/CCC/CCCTemplateData.ts +0 -2
- package/CCC/ClientInfo.ts +11 -1
- package/package.json +1 -1
package/CCC/AccountInfo.ts
CHANGED
@@ -15,7 +15,6 @@ export interface AccountInfo {
|
|
15
15
|
BlastStatusId?: number;
|
16
16
|
IsHasResidentialAccount?: boolean;
|
17
17
|
|
18
|
-
|
19
18
|
LetterDate?: string;
|
20
19
|
TaxYear?: number;
|
21
20
|
ClientportalUrl?: string;
|
@@ -79,4 +78,11 @@ export interface AccountInfo {
|
|
79
78
|
CompanyPincode?: string;
|
80
79
|
ClientName?: string;
|
81
80
|
ClassificationType?: string;
|
81
|
+
|
82
|
+
FromEmail?: string;
|
83
|
+
EmailSubject?: string;
|
84
|
+
DispositionNotificationTo?: string;
|
85
|
+
ReturnReceiptTo?:string;
|
86
|
+
CommercialLink?: string;
|
87
|
+
ResidentialLink?: string;
|
82
88
|
}
|
package/CCC/CCCTemplateData.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
import { ClientInfo } from "./ClientInfo";
|
2
|
-
import { AccountInfo } from "./AccountInfo";
|
3
2
|
import { QualifiedClientInfo } from "./QualifiedClientInfo";
|
4
3
|
|
5
4
|
export interface CCCTemplateData {
|
@@ -22,7 +21,6 @@ export interface CCCTemplateData {
|
|
22
21
|
FilenamePrefixReason?: string;
|
23
22
|
USMailLetterFileName?:string;
|
24
23
|
GenrationPathForAll?: string[];
|
25
|
-
AccountInfo?: AccountInfo[],
|
26
24
|
ClientInfo?: ClientInfo;
|
27
25
|
QualifiedClientInfo?: QualifiedClientInfo
|
28
26
|
}
|
package/CCC/ClientInfo.ts
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
import { AccountInfo } from "./AccountInfo";
|
2
|
+
|
1
3
|
export interface ClientInfo {
|
2
4
|
Id?: number;
|
3
5
|
ClientId?: number;
|
@@ -15,7 +17,6 @@ export interface ClientInfo {
|
|
15
17
|
BlastStatusId?: number;
|
16
18
|
IsHasResidentialAccount?: boolean;
|
17
19
|
|
18
|
-
|
19
20
|
LetterDate?: string;
|
20
21
|
TaxYear?: number;
|
21
22
|
ClientportalUrl?: string;
|
@@ -79,4 +80,13 @@ export interface ClientInfo {
|
|
79
80
|
CompanyPincode?: string;
|
80
81
|
ClientName?: string;
|
81
82
|
ClassificationType?: string;
|
83
|
+
|
84
|
+
FromEmail?: string;
|
85
|
+
EmailSubject?: string;
|
86
|
+
DispositionNotificationTo?: string;
|
87
|
+
ReturnReceiptTo?:string;
|
88
|
+
CommercialLink?: string;
|
89
|
+
ResidentialLink?: string;
|
90
|
+
|
91
|
+
AccountInfo?: AccountInfo[]
|
82
92
|
}
|