spartaxx.businessmodels 1.0.447 → 1.0.449
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.
@@ -91,6 +91,7 @@ export interface ClientSetupInfo {
|
|
91
91
|
ProjectName: string;
|
92
92
|
AccountReasonId: number;
|
93
93
|
TxrollCadluc: string;
|
94
|
+
LeadId?: number;
|
94
95
|
}
|
95
96
|
|
96
97
|
export interface SelectedPropertyList {
|
@@ -178,4 +179,5 @@ export interface OnlineClientSetupInfo {
|
|
178
179
|
TxrollLegalDescription?: string;
|
179
180
|
SocketToken?: string;
|
180
181
|
IPAddress?: string;
|
182
|
+
LeadId?: number;
|
181
183
|
}
|
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -315,7 +315,7 @@ export interface AppConfigHub {
|
|
315
315
|
AgentMobileNumber: string;
|
316
316
|
AgentHelpLineNumber: string;
|
317
317
|
AgentWebsite: string;
|
318
|
-
|
318
|
+
ESignConfirmationDocumentsId: string;
|
319
319
|
ESignConfirmationDocumentSubject: string;
|
320
320
|
}
|
321
321
|
|
@@ -637,7 +637,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
637
637
|
AgentMobileNumber: "",
|
638
638
|
AgentHelpLineNumber: "",
|
639
639
|
AgentWebsite: "",
|
640
|
-
|
640
|
+
ESignConfirmationDocumentsId: "",
|
641
641
|
ESignConfirmationDocumentSubject: ""
|
642
642
|
}
|
643
643
|
}
|