spartaxx.businessmodels 1.0.294 → 1.0.295
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCTemplateData.js +2 -0
- package/CCC/CCCTemplateData.ts +2 -1
- package/Common/AppConfigHub.js +5 -0
- package/Common/AppConfigHub.ts +10 -0
- package/package.json +1 -1
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
|
}
|
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
|
|