spartaxx.businessmodels 1.0.253 → 1.0.255
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/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -37,6 +37,7 @@ export interface AccountInfo {
|
|
37
37
|
ARBAssignedAgentName?: string;
|
38
38
|
ARBAssignedAgentRegistrationNumber?: string;
|
39
39
|
ARBAssignedAgentPhoneNumber?: string;
|
40
|
+
ARBAssignedAgentEmailAddress?: string;
|
40
41
|
|
41
42
|
OwnerName?: string;
|
42
43
|
OwnerEmail?: string;
|
@@ -107,6 +108,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
107
108
|
ARBAssignedAgentName: "",
|
108
109
|
ARBAssignedAgentRegistrationNumber: "",
|
109
110
|
ARBAssignedAgentPhoneNumber: "",
|
111
|
+
ARBAssignedAgentEmailAddress: "",
|
110
112
|
|
111
113
|
OwnerName: "",
|
112
114
|
OwnerEmail: "",
|
@@ -87,6 +87,7 @@ export interface ClientSetupInfo {
|
|
87
87
|
TxrollOcaluc: string;
|
88
88
|
IsRendition: boolean;
|
89
89
|
IsFinancial: boolean;
|
90
|
+
ProjectName:string;
|
90
91
|
}
|
91
92
|
|
92
93
|
export interface SelectedPropertyList {
|
@@ -126,6 +127,7 @@ export interface SelectedPropertyList {
|
|
126
127
|
City?: string;
|
127
128
|
owneraddress2?: string;
|
128
129
|
owneraddress3?: string;
|
130
|
+
ProjectName?: string;
|
129
131
|
}
|
130
132
|
|
131
133
|
export interface SelectedAllProperty {
|