spartaxx.businessmodels 1.0.274 → 1.0.276
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/ClientInputForm.ts
CHANGED
@@ -18,10 +18,11 @@ export interface ClientInputForm {
|
|
18
18
|
PerformOtherTaxMatters?: boolean;
|
19
19
|
RevokePriorForSameMatters?: boolean;
|
20
20
|
ListRepresentatives?: string;
|
21
|
-
|
21
|
+
AofAStepFiveAgentAuthorityDate?: string;
|
22
|
+
AofAStepNineDeliveryDate?: string;
|
22
23
|
Tittle?:number;
|
23
24
|
SigneeName?:string;
|
24
|
-
SigneeRole?:
|
25
|
+
SigneeRole?:boolean;
|
25
26
|
|
26
27
|
}
|
27
28
|
|
package/Common/AppConfigHub.js
CHANGED
package/Common/AppConfigHub.ts
CHANGED
@@ -242,6 +242,9 @@ export interface AppConfigHub {
|
|
242
242
|
cpckCLAgreementPropertySurvey: string;
|
243
243
|
cpckCLAofAPropertySurvey: string;
|
244
244
|
RMQConfigCPCoverLetter: string;
|
245
|
+
CPckTexasAgreementBodyHtmlContentId: string;
|
246
|
+
CheckBox: string;
|
247
|
+
UnCheckBox: string;
|
245
248
|
}
|
246
249
|
|
247
250
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -489,6 +492,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
489
492
|
cpckCLAgreementPropertySurvey: "",
|
490
493
|
cpckCLAofAPropertySurvey: "",
|
491
494
|
RMQConfigCPCoverLetter: "",
|
495
|
+
CPckTexasAgreementBodyHtmlContentId: "",
|
496
|
+
CheckBox: "",
|
497
|
+
UnCheckBox: "",
|
492
498
|
}
|
493
499
|
}
|
494
500
|
|