spartaxx.businessmodels 1.0.284 → 1.0.285
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 +9 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -265,6 +265,10 @@ function createDefaultAppConfigHub() {
|
|
265
265
|
CPckOOTILOtherThanCookAgreementTemplateBodyHtmlContentId: "",
|
266
266
|
RMQConfigCPckILOtherThanCookAgreement: "",
|
267
267
|
CPckFileNamePrefixILOtherThanCookAgreement: "",
|
268
|
+
CPckOOTUSMailCoverLetterPowerOfAttorneyBodyHtmlContentId: "",
|
269
|
+
CPckOOTUSMailCoverLetterILCookBodyHtmlContentId: "",
|
270
|
+
cpckCLPowerOfAttorney: "",
|
271
|
+
cpckCLILCook: "",
|
268
272
|
};
|
269
273
|
});
|
270
274
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -250,7 +250,11 @@ export interface AppConfigHub {
|
|
250
250
|
CPckFileNamePrefixILCookAgreement: string;
|
251
251
|
CPckOOTILOtherThanCookAgreementTemplateBodyHtmlContentId: string;
|
252
252
|
RMQConfigCPckILOtherThanCookAgreement: string;
|
253
|
-
CPckFileNamePrefixILOtherThanCookAgreement: string
|
253
|
+
CPckFileNamePrefixILOtherThanCookAgreement: string;
|
254
|
+
CPckOOTUSMailCoverLetterPowerOfAttorneyBodyHtmlContentId: string;
|
255
|
+
CPckOOTUSMailCoverLetterILCookBodyHtmlContentId: string;
|
256
|
+
cpckCLPowerOfAttorney: string;
|
257
|
+
cpckCLILCook: string;
|
254
258
|
}
|
255
259
|
|
256
260
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -507,6 +511,10 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
507
511
|
CPckOOTILOtherThanCookAgreementTemplateBodyHtmlContentId: "",
|
508
512
|
RMQConfigCPckILOtherThanCookAgreement: "",
|
509
513
|
CPckFileNamePrefixILOtherThanCookAgreement: "",
|
514
|
+
CPckOOTUSMailCoverLetterPowerOfAttorneyBodyHtmlContentId: "",
|
515
|
+
CPckOOTUSMailCoverLetterILCookBodyHtmlContentId: "",
|
516
|
+
cpckCLPowerOfAttorney: "",
|
517
|
+
cpckCLILCook: "",
|
510
518
|
}
|
511
519
|
}
|
512
520
|
|