spartaxx.businessmodels 1.0.470 → 1.0.471
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 -1
- package/Common/AppConfigHub.ts +7 -3
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -361,7 +361,9 @@ function createDefaultAppConfigHub() {
|
|
361
361
|
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: "",
|
362
362
|
CPckFileNamePrefixNYAuthorization: "",
|
363
363
|
CPckOOTNewYorkResidentialAgreementTemplateBodyHtmlContentId: "",
|
364
|
-
CPckFileNamePrefixNYResidentialAgreement: ""
|
364
|
+
CPckFileNamePrefixNYResidentialAgreement: "",
|
365
|
+
NationalAgreementCompanyAddress: "",
|
366
|
+
NationalAgreementCompanyPhoneNumber: "",
|
365
367
|
};
|
366
368
|
});
|
367
369
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -347,8 +347,10 @@ export interface AppConfigHub {
|
|
347
347
|
CPckOOTNewYorkResidentialAuthorizationFormPage3BodyHtmlContentId: string;
|
348
348
|
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: string;
|
349
349
|
CPckFileNamePrefixNYAuthorization: string;
|
350
|
-
CPckOOTNewYorkResidentialAgreementTemplateBodyHtmlContentId: string
|
351
|
-
CPckFileNamePrefixNYResidentialAgreement: string
|
350
|
+
CPckOOTNewYorkResidentialAgreementTemplateBodyHtmlContentId: string;
|
351
|
+
CPckFileNamePrefixNYResidentialAgreement: string;
|
352
|
+
NationalAgreementCompanyAddress: string;
|
353
|
+
NationalAgreementCompanyPhoneNumber: string;
|
352
354
|
}
|
353
355
|
|
354
356
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -702,7 +704,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
702
704
|
CPckOOTNewYorkResidentialAuthorizationFormPage4BodyHtmlContentId: "",
|
703
705
|
CPckFileNamePrefixNYAuthorization: "",
|
704
706
|
CPckOOTNewYorkResidentialAgreementTemplateBodyHtmlContentId: "",
|
705
|
-
CPckFileNamePrefixNYResidentialAgreement: ""
|
707
|
+
CPckFileNamePrefixNYResidentialAgreement: "",
|
708
|
+
NationalAgreementCompanyAddress: "",
|
709
|
+
NationalAgreementCompanyPhoneNumber: "",
|
706
710
|
}
|
707
711
|
}
|
708
712
|
|