spartaxx.businessmodels 1.0.282 → 1.0.284
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 +6 -0
- package/Common/AppConfigHub.ts +12 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -259,6 +259,12 @@ function createDefaultAppConfigHub() {
|
|
259
259
|
CPckTexasAgreementBodyHtmlContentId: "",
|
260
260
|
CheckBox: "",
|
261
261
|
UnCheckBox: "",
|
262
|
+
CPckOOTILCookAgreementTemplateBodyHtmlContentId: "",
|
263
|
+
RMQConfigCPckILCookAgreement: "",
|
264
|
+
CPckFileNamePrefixILCookAgreement: "",
|
265
|
+
CPckOOTILOtherThanCookAgreementTemplateBodyHtmlContentId: "",
|
266
|
+
RMQConfigCPckILOtherThanCookAgreement: "",
|
267
|
+
CPckFileNamePrefixILOtherThanCookAgreement: "",
|
262
268
|
};
|
263
269
|
});
|
264
270
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -245,6 +245,12 @@ export interface AppConfigHub {
|
|
245
245
|
CPckTexasAgreementBodyHtmlContentId: string;
|
246
246
|
CheckBox: string;
|
247
247
|
UnCheckBox: string;
|
248
|
+
CPckOOTILCookAgreementTemplateBodyHtmlContentId: string;
|
249
|
+
RMQConfigCPckILCookAgreement: string;
|
250
|
+
CPckFileNamePrefixILCookAgreement: string;
|
251
|
+
CPckOOTILOtherThanCookAgreementTemplateBodyHtmlContentId: string;
|
252
|
+
RMQConfigCPckILOtherThanCookAgreement: string;
|
253
|
+
CPckFileNamePrefixILOtherThanCookAgreement: string
|
248
254
|
}
|
249
255
|
|
250
256
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -495,6 +501,12 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
495
501
|
CPckTexasAgreementBodyHtmlContentId: "",
|
496
502
|
CheckBox: "",
|
497
503
|
UnCheckBox: "",
|
504
|
+
CPckOOTILCookAgreementTemplateBodyHtmlContentId: "",
|
505
|
+
RMQConfigCPckILCookAgreement: "",
|
506
|
+
CPckFileNamePrefixILCookAgreement: "",
|
507
|
+
CPckOOTILOtherThanCookAgreementTemplateBodyHtmlContentId: "",
|
508
|
+
RMQConfigCPckILOtherThanCookAgreement: "",
|
509
|
+
CPckFileNamePrefixILOtherThanCookAgreement: "",
|
498
510
|
}
|
499
511
|
}
|
500
512
|
|