spartaxx.businessmodels 1.0.436 → 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 +4 -0
- package/Common/AppConfigHub.ts +8 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -324,6 +324,10 @@ function createDefaultAppConfigHub() {
|
|
324
324
|
CCCUsmailServicePackageId: "",
|
325
325
|
BppPhone: "",
|
326
326
|
CCCPckBenefitsTemplateBodyHtmlContentId: "",
|
327
|
+
ConciergeEmailSubject: "",
|
328
|
+
AgentMobileNumber: "",
|
329
|
+
AgentHelpLineNumber: "",
|
330
|
+
AgentWebsite: "",
|
327
331
|
};
|
328
332
|
});
|
329
333
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -311,6 +311,10 @@ export interface AppConfigHub {
|
|
311
311
|
CCCUsmailServicePackageId: string;
|
312
312
|
BppPhone: string;
|
313
313
|
CCCPckBenefitsTemplateBodyHtmlContentId: string;
|
314
|
+
ConciergeEmailSubject: string;
|
315
|
+
AgentMobileNumber: string;
|
316
|
+
AgentHelpLineNumber: string;
|
317
|
+
AgentWebsite : string;
|
314
318
|
}
|
315
319
|
|
316
320
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -627,6 +631,10 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
627
631
|
CCCUsmailServicePackageId: "",
|
628
632
|
BppPhone: "",
|
629
633
|
CCCPckBenefitsTemplateBodyHtmlContentId: "",
|
634
|
+
ConciergeEmailSubject: "",
|
635
|
+
AgentMobileNumber: "",
|
636
|
+
AgentHelpLineNumber: "",
|
637
|
+
AgentWebsite: "",
|
630
638
|
}
|
631
639
|
}
|
632
640
|
|