spartaxx.businessmodels 1.0.472 → 1.0.473
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
@@ -351,6 +351,7 @@ export interface AppConfigHub {
|
|
351
351
|
CPckFileNamePrefixNYResidentialAgreement: string;
|
352
352
|
NationalAgreementCompanyAddress: string;
|
353
353
|
NationalAgreementCompanyPhoneNumber: string;
|
354
|
+
CampaignLogoGA: string;
|
354
355
|
}
|
355
356
|
|
356
357
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -707,6 +708,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
707
708
|
CPckFileNamePrefixNYResidentialAgreement: "",
|
708
709
|
NationalAgreementCompanyAddress: "",
|
709
710
|
NationalAgreementCompanyPhoneNumber: "",
|
711
|
+
CampaignLogoGA: "",
|
710
712
|
}
|
711
713
|
}
|
712
714
|
|