spartaxx.businessmodels 1.0.437 → 1.0.438
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 +3 -0
- package/Common/AppConfigHub.ts +6 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -312,6 +312,9 @@ export interface AppConfigHub {
|
|
312
312
|
BppPhone: string;
|
313
313
|
CCCPckBenefitsTemplateBodyHtmlContentId: string;
|
314
314
|
ConciergeEmailSubject: string;
|
315
|
+
AgentMobileNumber: string;
|
316
|
+
AgentHelpLineNumber: string;
|
317
|
+
AgentWebsite : string;
|
315
318
|
}
|
316
319
|
|
317
320
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -629,6 +632,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
629
632
|
BppPhone: "",
|
630
633
|
CCCPckBenefitsTemplateBodyHtmlContentId: "",
|
631
634
|
ConciergeEmailSubject: "",
|
635
|
+
AgentMobileNumber: "",
|
636
|
+
AgentHelpLineNumber: "",
|
637
|
+
AgentWebsite: "",
|
632
638
|
}
|
633
639
|
}
|
634
640
|
|