spartaxx.businessmodels 1.0.146 → 1.0.147
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCTemplateData.ts +0 -2
- package/CCC/ClientInfo.ts +4 -0
- package/package.json +1 -1
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;
|
@@ -85,4 +87,6 @@ export interface ClientInfo {
|
|
85
87
|
ReturnReceiptTo?:string;
|
86
88
|
CommercialLink?: string;
|
87
89
|
ResidentialLink?: string;
|
90
|
+
|
91
|
+
AccountInfo?: AccountInfo[]
|
88
92
|
}
|