spartaxx.businessmodels 1.0.445 → 1.0.447
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/Common/AppConfigHub.js +2 -0
- package/Common/AppConfigHub.ts +5 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -314,7 +314,9 @@ export interface AppConfigHub {
|
|
314
314
|
ConciergeEmailSubject: string;
|
315
315
|
AgentMobileNumber: string;
|
316
316
|
AgentHelpLineNumber: string;
|
317
|
-
AgentWebsite
|
317
|
+
AgentWebsite: string;
|
318
|
+
ESignConfirmationDocuments: string;
|
319
|
+
ESignConfirmationDocumentSubject: string;
|
318
320
|
}
|
319
321
|
|
320
322
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -635,6 +637,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
635
637
|
AgentMobileNumber: "",
|
636
638
|
AgentHelpLineNumber: "",
|
637
639
|
AgentWebsite: "",
|
640
|
+
ESignConfirmationDocuments: "",
|
641
|
+
ESignConfirmationDocumentSubject: ""
|
638
642
|
}
|
639
643
|
}
|
640
644
|
|