spartaxx.businessmodels 1.0.449 → 1.0.451
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 +11 -1
- package/Common/AppConfigHub.ts +21 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -329,7 +329,17 @@ function createDefaultAppConfigHub() {
|
|
329
329
|
AgentHelpLineNumber: "",
|
330
330
|
AgentWebsite: "",
|
331
331
|
ESignConfirmationDocumentsId: "",
|
332
|
-
ESignConfirmationDocumentSubject: ""
|
332
|
+
ESignConfirmationDocumentSubject: "",
|
333
|
+
CCCFileCabinetId: "",
|
334
|
+
CCCEmailPWBatchCode: "",
|
335
|
+
CCCEmailPWDocumentType: "",
|
336
|
+
CCCEmailPWDocumentStatus: "",
|
337
|
+
CCCEmailPWCreatedApp: "",
|
338
|
+
CCCUSMailPWBatchCode: "",
|
339
|
+
CCCUSMailPWDocumentType: "",
|
340
|
+
CCCUSMailPWDocumentStatus: "",
|
341
|
+
CCCUSMailPWCreatedApp: "",
|
342
|
+
RMQConfigCCCBlastQueue: ""
|
333
343
|
};
|
334
344
|
});
|
335
345
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -317,6 +317,16 @@ export interface AppConfigHub {
|
|
317
317
|
AgentWebsite: string;
|
318
318
|
ESignConfirmationDocumentsId: string;
|
319
319
|
ESignConfirmationDocumentSubject: string;
|
320
|
+
CCCFileCabinetId: string;
|
321
|
+
CCCEmailPWBatchCode: string;
|
322
|
+
CCCEmailPWDocumentType: string;
|
323
|
+
CCCEmailPWDocumentStatus: string;
|
324
|
+
CCCEmailPWCreatedApp: string;
|
325
|
+
CCCUSMailPWBatchCode: string;
|
326
|
+
CCCUSMailPWDocumentType: string;
|
327
|
+
CCCUSMailPWDocumentStatus: string;
|
328
|
+
CCCUSMailPWCreatedApp: string;
|
329
|
+
RMQConfigCCCBlastQueue: string;
|
320
330
|
}
|
321
331
|
|
322
332
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -638,7 +648,17 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
638
648
|
AgentHelpLineNumber: "",
|
639
649
|
AgentWebsite: "",
|
640
650
|
ESignConfirmationDocumentsId: "",
|
641
|
-
ESignConfirmationDocumentSubject: ""
|
651
|
+
ESignConfirmationDocumentSubject: "",
|
652
|
+
CCCFileCabinetId: "",
|
653
|
+
CCCEmailPWBatchCode: "",
|
654
|
+
CCCEmailPWDocumentType: "",
|
655
|
+
CCCEmailPWDocumentStatus: "",
|
656
|
+
CCCEmailPWCreatedApp: "",
|
657
|
+
CCCUSMailPWBatchCode: "",
|
658
|
+
CCCUSMailPWDocumentType: "",
|
659
|
+
CCCUSMailPWDocumentStatus: "",
|
660
|
+
CCCUSMailPWCreatedApp: "",
|
661
|
+
RMQConfigCCCBlastQueue: ""
|
642
662
|
}
|
643
663
|
}
|
644
664
|
|