spartaxx.businessmodels 1.0.382 → 1.0.383
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/AppConfigHub.js +3 -1
- package/Common/AppConfigHub.ts +5 -1
- package/package.json +1 -1
package/Common/AppConfigHub.js
CHANGED
@@ -296,7 +296,9 @@ function createDefaultAppConfigHub() {
|
|
296
296
|
RMQConfigCCCNoticeOfExpirationofAofA: "",
|
297
297
|
cpckILAuthorizationform: "",
|
298
298
|
cpckILCookAgreementAndPOA: "",
|
299
|
-
cpckOtherILCookAgreementAndPOA: ""
|
299
|
+
cpckOtherILCookAgreementAndPOA: "",
|
300
|
+
RMQConfigCPckTexasLeadCommercialAgreement: "",
|
301
|
+
CPckFilenamePrefixTexasLeadCommercialAgreement: ""
|
300
302
|
};
|
301
303
|
});
|
302
304
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -283,6 +283,8 @@ export interface AppConfigHub {
|
|
283
283
|
cpckILAuthorizationform: string;
|
284
284
|
cpckILCookAgreementAndPOA: string;
|
285
285
|
cpckOtherILCookAgreementAndPOA: string;
|
286
|
+
RMQConfigCPckTexasLeadCommercialAgreement: string;
|
287
|
+
CPckFilenamePrefixTexasLeadCommercialAgreement: string;
|
286
288
|
}
|
287
289
|
|
288
290
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -570,7 +572,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
570
572
|
RMQConfigCCCNoticeOfExpirationofAofA: "",
|
571
573
|
cpckILAuthorizationform: "",
|
572
574
|
cpckILCookAgreementAndPOA: "",
|
573
|
-
cpckOtherILCookAgreementAndPOA: ""
|
575
|
+
cpckOtherILCookAgreementAndPOA: "",
|
576
|
+
RMQConfigCPckTexasLeadCommercialAgreement: "",
|
577
|
+
CPckFilenamePrefixTexasLeadCommercialAgreement: ""
|
574
578
|
}
|
575
579
|
}
|
576
580
|
|