spartaxx.businessmodels 1.0.244 → 1.0.246
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/AccountInfo.js +2 -0
- package/CCC/AccountInfo.ts +4 -0
- package/CCC/CCCModel.ts +3 -1
- package/CCC/GAPOAClientInputForm.js +2 -0
- package/CCC/GAPOAClientInputForm.ts +22 -0
- package/Common/AppConfigHub.js +22 -2
- package/Common/AppConfigHub.ts +45 -4
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -23,6 +23,8 @@ export interface AccountInfo {
|
|
23
23
|
LitigationContingency?: string;
|
24
24
|
IsNeedAofA?: number;
|
25
25
|
IsNeedBAAofA?: number;
|
26
|
+
LUCDescription?: string;
|
27
|
+
LegalDescription?: string;
|
26
28
|
|
27
29
|
OwnerName?: string;
|
28
30
|
OwnerEmail?: string;
|
@@ -79,6 +81,8 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
79
81
|
LitigationContingency: '',
|
80
82
|
IsNeedAofA: 0,
|
81
83
|
IsNeedBAAofA: 0,
|
84
|
+
LUCDescription: "",
|
85
|
+
LegalDescription: "",
|
82
86
|
|
83
87
|
OwnerName: '',
|
84
88
|
OwnerEmail: '',
|
package/CCC/CCCModel.ts
CHANGED
@@ -24,6 +24,7 @@ import { ClientPackageParam } from "./ClientPackageParam";
|
|
24
24
|
import { CCCClientContactFormInfo } from "./CCCClientContactFormInfo";
|
25
25
|
import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
|
26
26
|
import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
|
27
|
+
import { GAPOAClientInputForm } from "./GAPOAClientInputForm";
|
27
28
|
|
28
29
|
export {
|
29
30
|
ScoreCardDetails,
|
@@ -55,5 +56,6 @@ export {
|
|
55
56
|
CCCClientContactFormInfo,
|
56
57
|
NoticeOfProtestClientInfo,
|
57
58
|
ClientPhoneInfo,
|
58
|
-
createDefaultClientPhoneInfo
|
59
|
+
createDefaultClientPhoneInfo,
|
60
|
+
GAPOAClientInputForm
|
59
61
|
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
export interface GAPOAClientInputForm {
|
2
|
+
TaxpayerName?: string;
|
3
|
+
TelephoneNumber?: number;
|
4
|
+
MaillingAddress?: string;
|
5
|
+
SpouseName?: string;
|
6
|
+
SpouseTelephoneNumber?: number;
|
7
|
+
SpouseMaillingAddress?: string;
|
8
|
+
PropertyAddress?: string;
|
9
|
+
TaxType?: string;
|
10
|
+
TaxPeriod?: number;
|
11
|
+
MakePaymentsOnBehalfOfTaxYear?: string;
|
12
|
+
ReceiveChecksForRefunds?: string;
|
13
|
+
ExecuteWaiversForTaxDeficiencies?: string;
|
14
|
+
ExecuteTaxPeriodExtensions?: string;
|
15
|
+
FileProtestsAndAppeals?: string;
|
16
|
+
ExecuteRefundClaims?: string;
|
17
|
+
ReceiveConfidentialTaxInformation?: string;
|
18
|
+
PerformOtherTaxMatters?: string;
|
19
|
+
RevokePriorForSameMatters?: string;
|
20
|
+
ListRepresentatives?: string;
|
21
|
+
}
|
22
|
+
|
package/Common/AppConfigHub.js
CHANGED
@@ -30,6 +30,9 @@ function createDefaultAppConfigHub() {
|
|
30
30
|
CPckFilenamePrefixPropertySurvey: "",
|
31
31
|
CPckFilenamePrefixBPPAgreement: "",
|
32
32
|
CPckFilenameOOTCaliforniaPowerOfAttorney: "",
|
33
|
+
CPckFileNamePrefixGAAgreement: "",
|
34
|
+
CPckFileNamePrefixGAPOA: "",
|
35
|
+
CPckFileNamePrefixGAAuthorizationFormCoverLetter: "",
|
33
36
|
CPckTexasAccountSummaryTemplateHeaderHtmlContentId: "",
|
34
37
|
CPckTexasAccountSummaryTemplateBodyHtmlContentId: "",
|
35
38
|
CPckTexasResidentialAgreementTemplateHeaderHtmlContentId: "",
|
@@ -66,6 +69,12 @@ function createDefaultAppConfigHub() {
|
|
66
69
|
CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId: "",
|
67
70
|
CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId: "",
|
68
71
|
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId: "",
|
72
|
+
CPckOOTGAAgreementTemplateBodyHtmlContentId: "",
|
73
|
+
CPckOOTGAPOAPage1BodyHtmlContentId: "",
|
74
|
+
CPckOOTGAPOAPage2BodyHtmlContentId: "",
|
75
|
+
CPckOOTGANationalAgreementPage1BodyHtmlContentId: "",
|
76
|
+
CPckOOTGANationalAgreementPage2BodyHtmlContentId: "",
|
77
|
+
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: "",
|
69
78
|
ESignLink: "",
|
70
79
|
CPckFileName: "",
|
71
80
|
CPckESignLink: "",
|
@@ -73,7 +82,6 @@ function createDefaultAppConfigHub() {
|
|
73
82
|
CPckSalesCRMESignSubject: "",
|
74
83
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
75
84
|
CPckClientEmailESignSubject: "",
|
76
|
-
CCCPckUSMailLetterFileNameEsign: "",
|
77
85
|
//#endregion
|
78
86
|
//#region CCC Package Config
|
79
87
|
CCCPckLetterGenTempPath: "",
|
@@ -108,6 +116,7 @@ function createDefaultAppConfigHub() {
|
|
108
116
|
cpkcommercialagreement: "",
|
109
117
|
cpkcommercialaofa: "",
|
110
118
|
CPckClientEmailContentId: "",
|
119
|
+
CCCPckUSMailLetterFileNameEsign: "",
|
111
120
|
//#endregion
|
112
121
|
//#region Protest Config
|
113
122
|
ProtestLetterName: "",
|
@@ -132,6 +141,8 @@ function createDefaultAppConfigHub() {
|
|
132
141
|
ProtestCountyLetterSubject: "",
|
133
142
|
ProtestCountyLetterDispositionNotificationToEmail: "",
|
134
143
|
ProtestCountyLetterReturnReceiptToEmail: "",
|
144
|
+
HB201USPSNumberAuditProofDocumentPath: "",
|
145
|
+
ProtestLetterUSPSNumberAuditProofDocumentPath: "",
|
135
146
|
//#endregion
|
136
147
|
//#region Client Setup Config
|
137
148
|
ClientSetupWelcomeEmailTemplateContentoftheemailHtmlContentId: "",
|
@@ -179,6 +190,9 @@ function createDefaultAppConfigHub() {
|
|
179
190
|
RMQConfigCPckOOTPowerOfAttorney: "",
|
180
191
|
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm: "",
|
181
192
|
RMQConfigCPckOOTCaliforniaPowerOfAttorney: "",
|
193
|
+
RMQConfigCPckGAAuthorizationFormCoverLetter: "",
|
194
|
+
RMQConfigCPckGAAgreement: "",
|
195
|
+
RMQConfigCPckGAPOA: "",
|
182
196
|
//#endregion
|
183
197
|
//#region Common Config
|
184
198
|
CompanyName: "",
|
@@ -190,6 +204,7 @@ function createDefaultAppConfigHub() {
|
|
190
204
|
CompanyEmail: "",
|
191
205
|
CompanyTollFree: "",
|
192
206
|
CompanyFax: "",
|
207
|
+
CompanyWebsite: "",
|
193
208
|
ClientPortalUrl: "",
|
194
209
|
ClientPortalUrlLabel: "",
|
195
210
|
TaxYear: "",
|
@@ -197,7 +212,12 @@ function createDefaultAppConfigHub() {
|
|
197
212
|
AppraisalAddress: "",
|
198
213
|
AppraisalDistrictPhone: "",
|
199
214
|
RevDate: "",
|
200
|
-
|
215
|
+
LicenceStateComplaintsWebsite: "",
|
216
|
+
CompanyLogoResidential: "",
|
217
|
+
CompanyLogoCommercial: "",
|
218
|
+
CompanyNameCommercial: "",
|
219
|
+
TexasAgreementPOBOXAddress: "",
|
220
|
+
CompletePOBOXAddress: "",
|
201
221
|
//#endregion
|
202
222
|
//#region Clientsetup Config
|
203
223
|
NextYearSignupfromEmail: "",
|
package/Common/AppConfigHub.ts
CHANGED
@@ -19,6 +19,9 @@ export interface AppConfigHub {
|
|
19
19
|
CPckFilenamePrefixPropertySurvey: string;
|
20
20
|
CPckFilenamePrefixBPPAgreement: string;
|
21
21
|
CPckFilenameOOTCaliforniaPowerOfAttorney: string;
|
22
|
+
CPckFileNamePrefixGAAgreement: string;
|
23
|
+
CPckFileNamePrefixGAPOA: string;
|
24
|
+
CPckFileNamePrefixGAAuthorizationFormCoverLetter: string;
|
22
25
|
|
23
26
|
CPckTexasAccountSummaryTemplateHeaderHtmlContentId: string;
|
24
27
|
CPckTexasAccountSummaryTemplateBodyHtmlContentId: string;
|
@@ -57,6 +60,12 @@ export interface AppConfigHub {
|
|
57
60
|
CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId: string;
|
58
61
|
CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId: string;
|
59
62
|
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId: string;
|
63
|
+
CPckOOTGAAgreementTemplateBodyHtmlContentId: string;
|
64
|
+
CPckOOTGAPOAPage1BodyHtmlContentId: string;
|
65
|
+
CPckOOTGAPOAPage2BodyHtmlContentId: string;
|
66
|
+
CPckOOTGANationalAgreementPage1BodyHtmlContentId: string;
|
67
|
+
CPckOOTGANationalAgreementPage2BodyHtmlContentId: string;
|
68
|
+
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: string;
|
60
69
|
|
61
70
|
ESignLink: string;
|
62
71
|
CPckFileName: string;
|
@@ -65,7 +74,7 @@ export interface AppConfigHub {
|
|
65
74
|
CPckSalesCRMESignSubject: string;
|
66
75
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: string;
|
67
76
|
CPckClientEmailESignSubject: string;
|
68
|
-
|
77
|
+
|
69
78
|
//#endregion
|
70
79
|
|
71
80
|
//#region CCC Package Config
|
@@ -102,6 +111,7 @@ export interface AppConfigHub {
|
|
102
111
|
cpkcommercialagreement: string;
|
103
112
|
cpkcommercialaofa: string;
|
104
113
|
CPckClientEmailContentId: string;
|
114
|
+
CCCPckUSMailLetterFileNameEsign: string;
|
105
115
|
|
106
116
|
//#endregion
|
107
117
|
|
@@ -129,6 +139,8 @@ export interface AppConfigHub {
|
|
129
139
|
ProtestCountyLetterSubject: string;
|
130
140
|
ProtestCountyLetterDispositionNotificationToEmail: string;
|
131
141
|
ProtestCountyLetterReturnReceiptToEmail: string;
|
142
|
+
HB201USPSNumberAuditProofDocumentPath: string;
|
143
|
+
ProtestLetterUSPSNumberAuditProofDocumentPath: string;
|
132
144
|
//#endregion
|
133
145
|
|
134
146
|
//#region Client Setup Config
|
@@ -187,6 +199,9 @@ export interface AppConfigHub {
|
|
187
199
|
RMQConfigCPckOOTPowerOfAttorney: string;
|
188
200
|
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm: string;
|
189
201
|
RMQConfigCPckOOTCaliforniaPowerOfAttorney: string;
|
202
|
+
RMQConfigCPckGAAuthorizationFormCoverLetter: string;
|
203
|
+
RMQConfigCPckGAAgreement: string;
|
204
|
+
RMQConfigCPckGAPOA: string;
|
190
205
|
|
191
206
|
//#endregion
|
192
207
|
|
@@ -201,6 +216,7 @@ export interface AppConfigHub {
|
|
201
216
|
CompanyEmail: string;
|
202
217
|
CompanyTollFree: string;
|
203
218
|
CompanyFax: string;
|
219
|
+
CompanyWebsite: string;
|
204
220
|
ClientPortalUrl: string;
|
205
221
|
ClientPortalUrlLabel: string;
|
206
222
|
TaxYear: string;
|
@@ -208,7 +224,12 @@ export interface AppConfigHub {
|
|
208
224
|
AppraisalAddress: string;
|
209
225
|
AppraisalDistrictPhone: string;
|
210
226
|
RevDate: string;
|
211
|
-
|
227
|
+
LicenceStateComplaintsWebsite: string;
|
228
|
+
CompanyLogoResidential: string;
|
229
|
+
CompanyLogoCommercial: string;
|
230
|
+
CompanyNameCommercial: string;
|
231
|
+
TexasAgreementPOBOXAddress: string;
|
232
|
+
CompletePOBOXAddress: string;
|
212
233
|
|
213
234
|
//#endregion
|
214
235
|
|
@@ -250,6 +271,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
250
271
|
CPckFilenamePrefixPropertySurvey: "",
|
251
272
|
CPckFilenamePrefixBPPAgreement: "",
|
252
273
|
CPckFilenameOOTCaliforniaPowerOfAttorney: "",
|
274
|
+
CPckFileNamePrefixGAAgreement: "",
|
275
|
+
CPckFileNamePrefixGAPOA: "",
|
276
|
+
CPckFileNamePrefixGAAuthorizationFormCoverLetter: "",
|
253
277
|
|
254
278
|
CPckTexasAccountSummaryTemplateHeaderHtmlContentId: "",
|
255
279
|
CPckTexasAccountSummaryTemplateBodyHtmlContentId: "",
|
@@ -288,6 +312,12 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
288
312
|
CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId: "",
|
289
313
|
CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId: "",
|
290
314
|
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId: "",
|
315
|
+
CPckOOTGAAgreementTemplateBodyHtmlContentId: "",
|
316
|
+
CPckOOTGAPOAPage1BodyHtmlContentId: "",
|
317
|
+
CPckOOTGAPOAPage2BodyHtmlContentId: "",
|
318
|
+
CPckOOTGANationalAgreementPage1BodyHtmlContentId: "",
|
319
|
+
CPckOOTGANationalAgreementPage2BodyHtmlContentId: "",
|
320
|
+
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: "",
|
291
321
|
|
292
322
|
ESignLink: "",
|
293
323
|
CPckFileName: "",
|
@@ -296,7 +326,6 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
296
326
|
CPckSalesCRMESignSubject: "",
|
297
327
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
298
328
|
CPckClientEmailESignSubject: "",
|
299
|
-
CCCPckUSMailLetterFileNameEsign: "",
|
300
329
|
|
301
330
|
//#endregion
|
302
331
|
|
@@ -334,6 +363,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
334
363
|
cpkcommercialagreement: "",
|
335
364
|
cpkcommercialaofa: "",
|
336
365
|
CPckClientEmailContentId: "",
|
366
|
+
CCCPckUSMailLetterFileNameEsign: "",
|
337
367
|
|
338
368
|
//#endregion
|
339
369
|
|
@@ -361,6 +391,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
361
391
|
ProtestCountyLetterSubject: "",
|
362
392
|
ProtestCountyLetterDispositionNotificationToEmail: "",
|
363
393
|
ProtestCountyLetterReturnReceiptToEmail: "",
|
394
|
+
HB201USPSNumberAuditProofDocumentPath: "",
|
395
|
+
ProtestLetterUSPSNumberAuditProofDocumentPath: "",
|
364
396
|
//#endregion
|
365
397
|
|
366
398
|
//#region Client Setup Config
|
@@ -419,6 +451,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
419
451
|
RMQConfigCPckOOTPowerOfAttorney: "",
|
420
452
|
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm: "",
|
421
453
|
RMQConfigCPckOOTCaliforniaPowerOfAttorney: "",
|
454
|
+
RMQConfigCPckGAAuthorizationFormCoverLetter: "",
|
455
|
+
RMQConfigCPckGAAgreement: "",
|
456
|
+
RMQConfigCPckGAPOA: "",
|
422
457
|
|
423
458
|
//#endregion
|
424
459
|
|
@@ -433,6 +468,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
433
468
|
CompanyEmail: "",
|
434
469
|
CompanyTollFree: "",
|
435
470
|
CompanyFax: "",
|
471
|
+
CompanyWebsite: "",
|
436
472
|
ClientPortalUrl: "",
|
437
473
|
ClientPortalUrlLabel: "",
|
438
474
|
TaxYear: "",
|
@@ -440,7 +476,12 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
440
476
|
AppraisalAddress: "",
|
441
477
|
AppraisalDistrictPhone: "",
|
442
478
|
RevDate: "",
|
443
|
-
|
479
|
+
LicenceStateComplaintsWebsite: "",
|
480
|
+
CompanyLogoResidential: "",
|
481
|
+
CompanyLogoCommercial: "",
|
482
|
+
CompanyNameCommercial: "",
|
483
|
+
TexasAgreementPOBOXAddress: "",
|
484
|
+
CompletePOBOXAddress: "",
|
444
485
|
|
445
486
|
//#endregion
|
446
487
|
|