spartaxx.businessmodels 1.0.264 → 1.0.267
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 +3 -1
- package/CCC/CCCModel.js +1 -3
- package/CCC/CCCModel.ts +2 -2
- package/CCC/ClientPackageParam.ts +2 -2
- package/Common/AppConfigHub.js +37 -1
- package/Common/AppConfigHub.ts +73 -1
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
|
@@ -64,9 +64,10 @@ export interface AccountInfo {
|
|
|
64
64
|
IsProtested?: boolean;
|
|
65
65
|
IsDontProtested?: boolean;
|
|
66
66
|
IsInactivate?: boolean;
|
|
67
|
-
IsInactivateReasonCode?: number
|
|
67
|
+
IsInactivateReasonCode?: number
|
|
68
68
|
IsReactivateAccount?: boolean;
|
|
69
69
|
CDU?: string;
|
|
70
|
+
AccountSourceId?: number;
|
|
70
71
|
}
|
|
71
72
|
|
|
72
73
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
@@ -139,5 +140,6 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
|
139
140
|
IsInactivateReasonCode: 0,
|
|
140
141
|
IsReactivateAccount: false,
|
|
141
142
|
CDU: "",
|
|
143
|
+
AccountSourceId: 0
|
|
142
144
|
};
|
|
143
145
|
}
|
package/CCC/CCCModel.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.createDefaultClientPhoneInfo = exports.createDefaultAccountInfo = exports.createDefaultClientInfo = exports.createDefaultQualifiedClientInfo = void 0;
|
|
4
4
|
const QualifiedClientInfo_1 = require("./QualifiedClientInfo");
|
|
5
5
|
Object.defineProperty(exports, "createDefaultQualifiedClientInfo", { enumerable: true, get: function () { return QualifiedClientInfo_1.createDefaultQualifiedClientInfo; } });
|
|
6
6
|
const ClientInfo_1 = require("./ClientInfo");
|
|
@@ -9,5 +9,3 @@ const AccountInfo_1 = require("./AccountInfo");
|
|
|
9
9
|
Object.defineProperty(exports, "createDefaultAccountInfo", { enumerable: true, get: function () { return AccountInfo_1.createDefaultAccountInfo; } });
|
|
10
10
|
const ClientPhoneInfo_1 = require("./ClientPhoneInfo");
|
|
11
11
|
Object.defineProperty(exports, "createDefaultClientPhoneInfo", { enumerable: true, get: function () { return ClientPhoneInfo_1.createDefaultClientPhoneInfo; } });
|
|
12
|
-
const GAPOAClientInputForm_1 = require("./GAPOAClientInputForm");
|
|
13
|
-
Object.defineProperty(exports, "GAPOAClientInputForm", { enumerable: true, get: function () { return GAPOAClientInputForm_1.GAPOAClientInputForm; } });
|
package/CCC/CCCModel.ts
CHANGED
|
@@ -24,7 +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 {
|
|
27
|
+
import { ClientInputForm } from "./ClientInputForm";
|
|
28
28
|
import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWithDocuFirstAPIParam";
|
|
29
29
|
|
|
30
30
|
export {
|
|
@@ -58,6 +58,6 @@ export {
|
|
|
58
58
|
NoticeOfProtestClientInfo,
|
|
59
59
|
ClientPhoneInfo,
|
|
60
60
|
createDefaultClientPhoneInfo,
|
|
61
|
-
|
|
61
|
+
ClientInputForm,
|
|
62
62
|
ValidateClientSignWithDocuFirstAPIParam
|
|
63
63
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
|
3
|
-
import {
|
|
3
|
+
import { ClientInputForm } from "./ClientInputForm";
|
|
4
4
|
|
|
5
5
|
export interface ClientPackageParam {
|
|
6
6
|
ClientId?: number;
|
|
@@ -15,5 +15,5 @@ export interface ClientPackageParam {
|
|
|
15
15
|
FromEmail?:string;
|
|
16
16
|
UserId?: number;
|
|
17
17
|
ItIsUSMailVersion?:boolean;
|
|
18
|
-
|
|
18
|
+
ClientInputForm?:ClientInputForm;
|
|
19
19
|
}
|
package/Common/AppConfigHub.js
CHANGED
|
@@ -207,7 +207,43 @@ function createDefaultAppConfigHub() {
|
|
|
207
207
|
CompanyAddress200: "",
|
|
208
208
|
TXResidentialAofAAgentPhoneNumber: "",
|
|
209
209
|
CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: "",
|
|
210
|
-
UserId: 0
|
|
210
|
+
UserId: 0,
|
|
211
|
+
CPckTexasCoverLetterAccountSummaryBodyHtmlContentId: "",
|
|
212
|
+
CPckTexasCoverLetterAgreementPropertySurveyBodyHtmlContentId: "",
|
|
213
|
+
CPckTexasCoverLetterAgreementOnlyBodyHtmlContentId: "",
|
|
214
|
+
CPckTexasCoverLetterAofAAgreementOnlyBodyHtmlContentId: "",
|
|
215
|
+
CPckTexasCoverLetterAofABAAofABodyHtmlContentId: "",
|
|
216
|
+
CPckTexasCoverLetterAofAPropertySurveyBodyHtmlContentId: "",
|
|
217
|
+
CPckTexasCoverLetterAofAOnlyBodyHtmlContentId: "",
|
|
218
|
+
CPckTexasCoverLetterBAAofABodyHtmlContentId: "",
|
|
219
|
+
CPckTexasCoverLetterNoAgreementBodyHtmlContentId: "",
|
|
220
|
+
CPckTexasCoverLetterProbelemAofALetterBodyHtmlContentId: "",
|
|
221
|
+
CPckTexasCoverLetterPropertySurveyOnlyBodyHtmlContentId: "",
|
|
222
|
+
CPckTexasCoverLetterStandardContingencyLitigationBodyHtmlContentId: "",
|
|
223
|
+
CPckFilenamePrefixCLAgreementOnly: "",
|
|
224
|
+
CPckFilenamePrefixCLAofAAgreementOnly: "",
|
|
225
|
+
CPckFilenamePrefixCLNoAgreement: "",
|
|
226
|
+
CPckFilenamePrefixCLStandardContingencyLitigation: "",
|
|
227
|
+
CPckFilenamePrefixCLAofABAofA: "",
|
|
228
|
+
CPckFilenamePrefixCLBAofA: "",
|
|
229
|
+
CPckFilenamePrefixCLProblemAofALetter: "",
|
|
230
|
+
CPckFilenamePrefixCLAofAOnly: "",
|
|
231
|
+
CPckFilenamePrefixCLAgreementPropertySurvey: "",
|
|
232
|
+
CPckFilenamePrefixCLAofAPropertySurvey: "",
|
|
233
|
+
CPckFileNamePrefixNationalAgreementFormCoverLetter: "",
|
|
234
|
+
CPckFilenamePrefixCLPropertySurvey: "",
|
|
235
|
+
DNDNextYearServicePackageId: 0,
|
|
236
|
+
CCCPkgInactiveCAFTypeId: 0,
|
|
237
|
+
CCCPkgInactiveClientRemarks: "",
|
|
238
|
+
CCCPkgInactiveLetterTypeId: 0,
|
|
239
|
+
CCCPkgDNDCAFTypeId: 0,
|
|
240
|
+
CCCPkgDNDClientRemarks: "",
|
|
241
|
+
CCCPkgDNDReasonCode: "",
|
|
242
|
+
CCCPkgDNDLetterTypeId: 0,
|
|
243
|
+
CCCPkgReactiveCAFTypeId: 0,
|
|
244
|
+
CCCPkgReactiveClientRemarks: "",
|
|
245
|
+
CCCPkgReactiveReasonCode: "",
|
|
246
|
+
CCCPkgReactiveLetterTypeId: 0,
|
|
211
247
|
};
|
|
212
248
|
});
|
|
213
249
|
}
|
package/Common/AppConfigHub.ts
CHANGED
|
@@ -194,6 +194,42 @@ export interface AppConfigHub {
|
|
|
194
194
|
TXResidentialAofAAgentPhoneNumber: string;
|
|
195
195
|
CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: string;
|
|
196
196
|
UserId: number;
|
|
197
|
+
CPckTexasCoverLetterAccountSummaryBodyHtmlContentId: string;
|
|
198
|
+
CPckTexasCoverLetterAgreementPropertySurveyBodyHtmlContentId: string;
|
|
199
|
+
CPckTexasCoverLetterAgreementOnlyBodyHtmlContentId: string;
|
|
200
|
+
CPckTexasCoverLetterAofAAgreementOnlyBodyHtmlContentId: string;
|
|
201
|
+
CPckTexasCoverLetterAofABAAofABodyHtmlContentId: string;
|
|
202
|
+
CPckTexasCoverLetterAofAPropertySurveyBodyHtmlContentId: string;
|
|
203
|
+
CPckTexasCoverLetterAofAOnlyBodyHtmlContentId: string;
|
|
204
|
+
CPckTexasCoverLetterBAAofABodyHtmlContentId: string;
|
|
205
|
+
CPckTexasCoverLetterNoAgreementBodyHtmlContentId: string;
|
|
206
|
+
CPckTexasCoverLetterProbelemAofALetterBodyHtmlContentId: string;
|
|
207
|
+
CPckTexasCoverLetterPropertySurveyOnlyBodyHtmlContentId: string;
|
|
208
|
+
CPckTexasCoverLetterStandardContingencyLitigationBodyHtmlContentId: string;
|
|
209
|
+
CPckFilenamePrefixCLAgreementOnly: string;
|
|
210
|
+
CPckFilenamePrefixCLAofAAgreementOnly: string;
|
|
211
|
+
CPckFilenamePrefixCLNoAgreement: string;
|
|
212
|
+
CPckFilenamePrefixCLStandardContingencyLitigation: string;
|
|
213
|
+
CPckFilenamePrefixCLAofABAofA: string;
|
|
214
|
+
CPckFilenamePrefixCLBAofA: string;
|
|
215
|
+
CPckFilenamePrefixCLProblemAofALetter: string;
|
|
216
|
+
CPckFilenamePrefixCLAofAOnly: string;
|
|
217
|
+
CPckFilenamePrefixCLAgreementPropertySurvey: string;
|
|
218
|
+
CPckFilenamePrefixCLAofAPropertySurvey: string;
|
|
219
|
+
CPckFileNamePrefixNationalAgreementFormCoverLetter: string;
|
|
220
|
+
CPckFilenamePrefixCLPropertySurvey: string;
|
|
221
|
+
DNDNextYearServicePackageId: number;
|
|
222
|
+
CCCPkgInactiveCAFTypeId: number;
|
|
223
|
+
CCCPkgInactiveClientRemarks: string;
|
|
224
|
+
CCCPkgInactiveLetterTypeId: number;
|
|
225
|
+
CCCPkgDNDCAFTypeId: number;
|
|
226
|
+
CCCPkgDNDClientRemarks: string;
|
|
227
|
+
CCCPkgDNDReasonCode: string;
|
|
228
|
+
CCCPkgDNDLetterTypeId: number;
|
|
229
|
+
CCCPkgReactiveCAFTypeId: number;
|
|
230
|
+
CCCPkgReactiveClientRemarks: string;
|
|
231
|
+
CCCPkgReactiveReasonCode: string;
|
|
232
|
+
CCCPkgReactiveLetterTypeId: number;
|
|
197
233
|
}
|
|
198
234
|
|
|
199
235
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
@@ -392,7 +428,43 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
|
392
428
|
CompanyAddress200: "",
|
|
393
429
|
TXResidentialAofAAgentPhoneNumber: "",
|
|
394
430
|
CPckTexasPropertySurveyEmailTemplateBodyHtmlContentId: "",
|
|
395
|
-
UserId: 0
|
|
431
|
+
UserId: 0,
|
|
432
|
+
CPckTexasCoverLetterAccountSummaryBodyHtmlContentId: "",
|
|
433
|
+
CPckTexasCoverLetterAgreementPropertySurveyBodyHtmlContentId: "",
|
|
434
|
+
CPckTexasCoverLetterAgreementOnlyBodyHtmlContentId: "",
|
|
435
|
+
CPckTexasCoverLetterAofAAgreementOnlyBodyHtmlContentId: "",
|
|
436
|
+
CPckTexasCoverLetterAofABAAofABodyHtmlContentId: "",
|
|
437
|
+
CPckTexasCoverLetterAofAPropertySurveyBodyHtmlContentId: "",
|
|
438
|
+
CPckTexasCoverLetterAofAOnlyBodyHtmlContentId: "",
|
|
439
|
+
CPckTexasCoverLetterBAAofABodyHtmlContentId: "",
|
|
440
|
+
CPckTexasCoverLetterNoAgreementBodyHtmlContentId: "",
|
|
441
|
+
CPckTexasCoverLetterProbelemAofALetterBodyHtmlContentId: "",
|
|
442
|
+
CPckTexasCoverLetterPropertySurveyOnlyBodyHtmlContentId: "",
|
|
443
|
+
CPckTexasCoverLetterStandardContingencyLitigationBodyHtmlContentId: "",
|
|
444
|
+
CPckFilenamePrefixCLAgreementOnly: "",
|
|
445
|
+
CPckFilenamePrefixCLAofAAgreementOnly: "",
|
|
446
|
+
CPckFilenamePrefixCLNoAgreement: "",
|
|
447
|
+
CPckFilenamePrefixCLStandardContingencyLitigation: "",
|
|
448
|
+
CPckFilenamePrefixCLAofABAofA: "",
|
|
449
|
+
CPckFilenamePrefixCLBAofA: "",
|
|
450
|
+
CPckFilenamePrefixCLProblemAofALetter: "",
|
|
451
|
+
CPckFilenamePrefixCLAofAOnly: "",
|
|
452
|
+
CPckFilenamePrefixCLAgreementPropertySurvey: "",
|
|
453
|
+
CPckFilenamePrefixCLAofAPropertySurvey: "",
|
|
454
|
+
CPckFileNamePrefixNationalAgreementFormCoverLetter: "",
|
|
455
|
+
CPckFilenamePrefixCLPropertySurvey: "",
|
|
456
|
+
DNDNextYearServicePackageId: 0,
|
|
457
|
+
CCCPkgInactiveCAFTypeId: 0,
|
|
458
|
+
CCCPkgInactiveClientRemarks: "",
|
|
459
|
+
CCCPkgInactiveLetterTypeId: 0,
|
|
460
|
+
CCCPkgDNDCAFTypeId: 0,
|
|
461
|
+
CCCPkgDNDClientRemarks: "",
|
|
462
|
+
CCCPkgDNDReasonCode: "",
|
|
463
|
+
CCCPkgDNDLetterTypeId: 0,
|
|
464
|
+
CCCPkgReactiveCAFTypeId: 0,
|
|
465
|
+
CCCPkgReactiveClientRemarks: "",
|
|
466
|
+
CCCPkgReactiveReasonCode: "",
|
|
467
|
+
CCCPkgReactiveLetterTypeId: 0,
|
|
396
468
|
}
|
|
397
469
|
}
|
|
398
470
|
|