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