spartaxx.businessmodels 1.0.449 → 1.0.450
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 +10 -1
- package/Common/AppConfigHub.ts +19 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -329,7 +329,16 @@ 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: ""
|
333
342
|
};
|
334
343
|
});
|
335
344
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -317,6 +317,15 @@ 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;
|
320
329
|
}
|
321
330
|
|
322
331
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -638,7 +647,16 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
638
647
|
AgentHelpLineNumber: "",
|
639
648
|
AgentWebsite: "",
|
640
649
|
ESignConfirmationDocumentsId: "",
|
641
|
-
ESignConfirmationDocumentSubject: ""
|
650
|
+
ESignConfirmationDocumentSubject: "",
|
651
|
+
CCCFileCabinetId: "",
|
652
|
+
CCCEmailPWBatchCode: "",
|
653
|
+
CCCEmailPWDocumentType: "",
|
654
|
+
CCCEmailPWDocumentStatus: "",
|
655
|
+
CCCEmailPWCreatedApp: "",
|
656
|
+
CCCUSMailPWBatchCode: "",
|
657
|
+
CCCUSMailPWDocumentType: "",
|
658
|
+
CCCUSMailPWDocumentStatus: "",
|
659
|
+
CCCUSMailPWCreatedApp: ""
|
642
660
|
}
|
643
661
|
}
|
644
662
|
|