spartaxx.businessmodels 1.0.429 → 1.0.430
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 -1
- package/Common/AppConfigHub.ts +4 -2
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -309,7 +309,8 @@ export interface AppConfigHub {
|
|
309
309
|
CCCServicePackageId: number;
|
310
310
|
CCCEmailServicePackageId: string;
|
311
311
|
CCCUsmailServicePackageId: string;
|
312
|
-
BppPhone: string
|
312
|
+
BppPhone: string;
|
313
|
+
CCCPckBenefitsTemplateBodyHtmlContentId: string;
|
313
314
|
}
|
314
315
|
|
315
316
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -624,7 +625,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
624
625
|
CCCServicePackageId: 0,
|
625
626
|
CCCEmailServicePackageId: "",
|
626
627
|
CCCUsmailServicePackageId: "",
|
627
|
-
BppPhone: ""
|
628
|
+
BppPhone: "",
|
629
|
+
CCCPckBenefitsTemplateBodyHtmlContentId: "",
|
628
630
|
}
|
629
631
|
}
|
630
632
|
|