spartaxx.businessmodels 1.0.245 → 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 +1 -0
- package/CCC/AccountInfo.ts +2 -0
- package/CCC/CCCModel.ts +3 -1
- package/CCC/GAPOAClientInputForm.js +2 -0
- package/CCC/GAPOAClientInputForm.ts +22 -0
- package/Common/AppConfigHub.js +21 -2
- package/Common/AppConfigHub.ts +43 -4
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -24,6 +24,7 @@ export interface AccountInfo {
|
|
24
24
|
IsNeedAofA?: number;
|
25
25
|
IsNeedBAAofA?: number;
|
26
26
|
LUCDescription?: string;
|
27
|
+
LegalDescription?: string;
|
27
28
|
|
28
29
|
OwnerName?: string;
|
29
30
|
OwnerEmail?: string;
|
@@ -81,6 +82,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
81
82
|
IsNeedAofA: 0,
|
82
83
|
IsNeedBAAofA: 0,
|
83
84
|
LUCDescription: "",
|
85
|
+
LegalDescription: "",
|
84
86
|
|
85
87
|
OwnerName: '',
|
86
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,8 +212,12 @@ function createDefaultAppConfigHub() {
|
|
197
212
|
AppraisalAddress: "",
|
198
213
|
AppraisalDistrictPhone: "",
|
199
214
|
RevDate: "",
|
200
|
-
CompanyWebsite: "",
|
201
215
|
LicenceStateComplaintsWebsite: "",
|
216
|
+
CompanyLogoResidential: "",
|
217
|
+
CompanyLogoCommercial: "",
|
218
|
+
CompanyNameCommercial: "",
|
219
|
+
TexasAgreementPOBOXAddress: "",
|
220
|
+
CompletePOBOXAddress: "",
|
202
221
|
//#endregion
|
203
222
|
//#region Clientsetup Config
|
204
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,8 +224,12 @@ export interface AppConfigHub {
|
|
208
224
|
AppraisalAddress: string;
|
209
225
|
AppraisalDistrictPhone: string;
|
210
226
|
RevDate: string;
|
211
|
-
CompanyWebsite: string;
|
212
227
|
LicenceStateComplaintsWebsite: string;
|
228
|
+
CompanyLogoResidential: string;
|
229
|
+
CompanyLogoCommercial: string;
|
230
|
+
CompanyNameCommercial: string;
|
231
|
+
TexasAgreementPOBOXAddress: string;
|
232
|
+
CompletePOBOXAddress: string;
|
213
233
|
|
214
234
|
//#endregion
|
215
235
|
|
@@ -251,6 +271,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
251
271
|
CPckFilenamePrefixPropertySurvey: "",
|
252
272
|
CPckFilenamePrefixBPPAgreement: "",
|
253
273
|
CPckFilenameOOTCaliforniaPowerOfAttorney: "",
|
274
|
+
CPckFileNamePrefixGAAgreement: "",
|
275
|
+
CPckFileNamePrefixGAPOA: "",
|
276
|
+
CPckFileNamePrefixGAAuthorizationFormCoverLetter: "",
|
254
277
|
|
255
278
|
CPckTexasAccountSummaryTemplateHeaderHtmlContentId: "",
|
256
279
|
CPckTexasAccountSummaryTemplateBodyHtmlContentId: "",
|
@@ -289,6 +312,12 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
289
312
|
CPckOOTCaliforniaAgentAuthorizationFormPage1BodyHtmlContentId: "",
|
290
313
|
CPckOOTCaliforniaAgentAuthorizationFormPage2BodyHtmlContentId: "",
|
291
314
|
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId: "",
|
315
|
+
CPckOOTGAAgreementTemplateBodyHtmlContentId: "",
|
316
|
+
CPckOOTGAPOAPage1BodyHtmlContentId: "",
|
317
|
+
CPckOOTGAPOAPage2BodyHtmlContentId: "",
|
318
|
+
CPckOOTGANationalAgreementPage1BodyHtmlContentId: "",
|
319
|
+
CPckOOTGANationalAgreementPage2BodyHtmlContentId: "",
|
320
|
+
CPckOOTGAAuthorizationFormCoverLetterTemplateBodyHtmlContentId: "",
|
292
321
|
|
293
322
|
ESignLink: "",
|
294
323
|
CPckFileName: "",
|
@@ -297,7 +326,6 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
297
326
|
CPckSalesCRMESignSubject: "",
|
298
327
|
CPckSalesCRMESignTemplateContentoftheemailHtmlContentId: "",
|
299
328
|
CPckClientEmailESignSubject: "",
|
300
|
-
CCCPckUSMailLetterFileNameEsign: "",
|
301
329
|
|
302
330
|
//#endregion
|
303
331
|
|
@@ -335,6 +363,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
335
363
|
cpkcommercialagreement: "",
|
336
364
|
cpkcommercialaofa: "",
|
337
365
|
CPckClientEmailContentId: "",
|
366
|
+
CCCPckUSMailLetterFileNameEsign: "",
|
338
367
|
|
339
368
|
//#endregion
|
340
369
|
|
@@ -362,6 +391,8 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
362
391
|
ProtestCountyLetterSubject: "",
|
363
392
|
ProtestCountyLetterDispositionNotificationToEmail: "",
|
364
393
|
ProtestCountyLetterReturnReceiptToEmail: "",
|
394
|
+
HB201USPSNumberAuditProofDocumentPath: "",
|
395
|
+
ProtestLetterUSPSNumberAuditProofDocumentPath: "",
|
365
396
|
//#endregion
|
366
397
|
|
367
398
|
//#region Client Setup Config
|
@@ -420,6 +451,9 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
420
451
|
RMQConfigCPckOOTPowerOfAttorney: "",
|
421
452
|
RMQConfigCPckOOTCaliforniaAgentAuthorizationForm: "",
|
422
453
|
RMQConfigCPckOOTCaliforniaPowerOfAttorney: "",
|
454
|
+
RMQConfigCPckGAAuthorizationFormCoverLetter: "",
|
455
|
+
RMQConfigCPckGAAgreement: "",
|
456
|
+
RMQConfigCPckGAPOA: "",
|
423
457
|
|
424
458
|
//#endregion
|
425
459
|
|
@@ -434,6 +468,7 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
434
468
|
CompanyEmail: "",
|
435
469
|
CompanyTollFree: "",
|
436
470
|
CompanyFax: "",
|
471
|
+
CompanyWebsite: "",
|
437
472
|
ClientPortalUrl: "",
|
438
473
|
ClientPortalUrlLabel: "",
|
439
474
|
TaxYear: "",
|
@@ -441,8 +476,12 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
441
476
|
AppraisalAddress: "",
|
442
477
|
AppraisalDistrictPhone: "",
|
443
478
|
RevDate: "",
|
444
|
-
CompanyWebsite: "",
|
445
479
|
LicenceStateComplaintsWebsite: "",
|
480
|
+
CompanyLogoResidential: "",
|
481
|
+
CompanyLogoCommercial: "",
|
482
|
+
CompanyNameCommercial: "",
|
483
|
+
TexasAgreementPOBOXAddress: "",
|
484
|
+
CompletePOBOXAddress: "",
|
446
485
|
|
447
486
|
//#endregion
|
448
487
|
|