spartaxx.businessmodels 1.0.436 → 1.0.437
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 +1 -0
- package/Common/AppConfigHub.ts +2 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -311,6 +311,7 @@ export interface AppConfigHub {
|
|
311
311
|
CCCUsmailServicePackageId: string;
|
312
312
|
BppPhone: string;
|
313
313
|
CCCPckBenefitsTemplateBodyHtmlContentId: string;
|
314
|
+
ConciergeEmailSubject: string;
|
314
315
|
}
|
315
316
|
|
316
317
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -627,6 +628,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
627
628
|
CCCUsmailServicePackageId: "",
|
628
629
|
BppPhone: "",
|
629
630
|
CCCPckBenefitsTemplateBodyHtmlContentId: "",
|
631
|
+
ConciergeEmailSubject: "",
|
630
632
|
}
|
631
633
|
}
|
632
634
|
|