spartaxx.businessmodels 1.0.294 → 1.0.296
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/CCC/CCCTemplateData.ts
CHANGED
@@ -22,8 +22,9 @@ export interface CCCTemplateData {
|
|
22
22
|
gUId?: string;
|
23
23
|
ClientPackageDocument?: ClientPackageDocument[];
|
24
24
|
AppSideDocViewBaseUrl?: string;
|
25
|
-
|
25
|
+
OutputFileName?: string;
|
26
26
|
OutputFilePath?: string;
|
27
|
+
|
27
28
|
OutputBase64Format?: string;
|
28
29
|
DocumentsTempPath?: string[];
|
29
30
|
}
|
@@ -15,9 +15,11 @@ export interface AccountDocumentInfo {
|
|
15
15
|
PropertyAddress?: string;
|
16
16
|
IsDocumentGenerated?: boolean;
|
17
17
|
DocumentPath?: string;
|
18
|
+
DocumentUrl?: string;
|
18
19
|
}
|
19
20
|
|
20
21
|
export interface ClientDocumentInfo {
|
21
22
|
DocumentName?: string;
|
22
23
|
DocumentPath?: string;
|
24
|
+
DocumentUrl?: string;
|
23
25
|
}
|
package/Common/AppConfigHub.js
CHANGED
@@ -282,6 +282,11 @@ function createDefaultAppConfigHub() {
|
|
282
282
|
CPckCoverLetterDocumentName: "",
|
283
283
|
CPckCaliforniaPowerOfAttorneyDocumentName: "",
|
284
284
|
CPckCaliforniaAgentAuthorizationFormDocumentName: "",
|
285
|
+
CPckLetterGenTempUrl: "",
|
286
|
+
CPckLetterGenUrl: "",
|
287
|
+
CCCPckLetterGenTempUrl: "",
|
288
|
+
CCCPckLetterGenUrl: "",
|
289
|
+
CCCPckEmailLetterUrl: ""
|
285
290
|
};
|
286
291
|
});
|
287
292
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -268,6 +268,11 @@ export interface AppConfigHub {
|
|
268
268
|
CPckCoverLetterDocumentName: string;
|
269
269
|
CPckCaliforniaPowerOfAttorneyDocumentName: string;
|
270
270
|
CPckCaliforniaAgentAuthorizationFormDocumentName: string;
|
271
|
+
CPckLetterGenTempUrl: string;
|
272
|
+
CPckLetterGenUrl: string;
|
273
|
+
CCCPckLetterGenTempUrl: string;
|
274
|
+
CCCPckLetterGenUrl: string;
|
275
|
+
CCCPckEmailLetterUrl: string;
|
271
276
|
}
|
272
277
|
|
273
278
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -541,6 +546,11 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
541
546
|
CPckCoverLetterDocumentName: "",
|
542
547
|
CPckCaliforniaPowerOfAttorneyDocumentName: "",
|
543
548
|
CPckCaliforniaAgentAuthorizationFormDocumentName: "",
|
549
|
+
CPckLetterGenTempUrl: "",
|
550
|
+
CPckLetterGenUrl: "",
|
551
|
+
CCCPckLetterGenTempUrl: "",
|
552
|
+
CCCPckLetterGenUrl: "",
|
553
|
+
CCCPckEmailLetterUrl: ""
|
544
554
|
}
|
545
555
|
}
|
546
556
|
|