spartaxx.businessmodels 1.0.275 → 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
@@ -243,6 +243,8 @@ export interface AppConfigHub {
|
|
243
243
|
cpckCLAofAPropertySurvey: string;
|
244
244
|
RMQConfigCPCoverLetter: string;
|
245
245
|
CPckTexasAgreementBodyHtmlContentId: string;
|
246
|
+
CheckBox: string;
|
247
|
+
UnCheckBox: string;
|
246
248
|
}
|
247
249
|
|
248
250
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -491,6 +493,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
491
493
|
cpckCLAofAPropertySurvey: "",
|
492
494
|
RMQConfigCPCoverLetter: "",
|
493
495
|
CPckTexasAgreementBodyHtmlContentId: "",
|
496
|
+
CheckBox: "",
|
497
|
+
UnCheckBox: "",
|
494
498
|
}
|
495
499
|
}
|
496
500
|
|