spartaxx.businessmodels 1.0.446 → 1.0.448
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 +2 -1
- package/Common/AppConfigHub.ts +4 -2
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -328,7 +328,8 @@ function createDefaultAppConfigHub() {
|
|
328
328
|
AgentMobileNumber: "",
|
329
329
|
AgentHelpLineNumber: "",
|
330
330
|
AgentWebsite: "",
|
331
|
-
|
331
|
+
ESignConfirmationDocumentsId: "",
|
332
|
+
ESignConfirmationDocumentSubject: ""
|
332
333
|
};
|
333
334
|
});
|
334
335
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -315,7 +315,8 @@ export interface AppConfigHub {
|
|
315
315
|
AgentMobileNumber: string;
|
316
316
|
AgentHelpLineNumber: string;
|
317
317
|
AgentWebsite: string;
|
318
|
-
|
318
|
+
ESignConfirmationDocumentsId: string;
|
319
|
+
ESignConfirmationDocumentSubject: string;
|
319
320
|
}
|
320
321
|
|
321
322
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -636,7 +637,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
636
637
|
AgentMobileNumber: "",
|
637
638
|
AgentHelpLineNumber: "",
|
638
639
|
AgentWebsite: "",
|
639
|
-
|
640
|
+
ESignConfirmationDocumentsId: "",
|
641
|
+
ESignConfirmationDocumentSubject: ""
|
640
642
|
}
|
641
643
|
}
|
642
644
|
|