spartaxx.businessmodels 1.0.391 → 1.0.392
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/AppConfigHub.js +1 -0
- package/Common/AppConfigHub.ts +2 -0
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -57,6 +57,7 @@ function createDefaultAppConfigHub() {
|
|
57
57
|
CCCPckEmailSubject: "",
|
58
58
|
CCCPckBlastEMailCount: "",
|
59
59
|
CCCPckBlastUSMailCount: "",
|
60
|
+
UserId: 0,
|
60
61
|
CCCPckFilenamePrefixReason: "",
|
61
62
|
CCCPckResidentialCoverLetterTemplateBodyHtmlContentId: "",
|
62
63
|
CCCPckResidentialCoverLetterTemplateFooterHtmlContentId: "",
|
package/Common/AppConfigHub.ts
CHANGED
@@ -43,6 +43,7 @@ export interface AppConfigHub {
|
|
43
43
|
CCCPckEmailSubject: string;
|
44
44
|
CCCPckBlastEMailCount: string;
|
45
45
|
CCCPckBlastUSMailCount: string;
|
46
|
+
UserId: number;
|
46
47
|
CCCPckFilenamePrefixReason: string;
|
47
48
|
CCCPckResidentialCoverLetterTemplateBodyHtmlContentId: string;
|
48
49
|
CCCPckResidentialCoverLetterTemplateFooterHtmlContentId: string;
|
@@ -349,6 +350,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
349
350
|
CCCPckEmailSubject: "",
|
350
351
|
CCCPckBlastEMailCount: "",
|
351
352
|
CCCPckBlastUSMailCount: "",
|
353
|
+
UserId: 0,
|
352
354
|
CCCPckFilenamePrefixReason: "",
|
353
355
|
CCCPckResidentialCoverLetterTemplateBodyHtmlContentId: "",
|
354
356
|
CCCPckResidentialCoverLetterTemplateFooterHtmlContentId: "",
|