spartaxx.businessmodels 1.0.82 → 1.0.84
Sign up to get free protection for your applications and to get access to all the features.
- package/Common/TemplateCategory.ts +2 -2
- package/Protest/LiquidJSProtestLetterDataParser.js +2 -0
- package/Protest/LiquidJSProtestLetterDataParser.ts +24 -0
- package/Protest/LiquidJSProtestingAccountInfo.js +2 -0
- package/Protest/LiquidJSProtestingAccountInfo.ts +14 -0
- package/Protest/ProtestDocumentTypes.js +2 -0
- package/Protest/ProtestDocumentTypes.ts +6 -0
- package/Protest/ProtestLetterTemplateParams.js +2 -0
- package/Protest/ProtestLetterTemplateParams.ts +10 -0
- package/Protest/ProtestModels.ts +7 -1
- package/package.json +1 -1
@@ -0,0 +1,24 @@
|
|
1
|
+
import { LiquidJSProtestingAccountInfo } from "./LiquidJSProtestingAccountInfo";
|
2
|
+
|
3
|
+
export interface LiquidJSProtestLetterDataParser {
|
4
|
+
TaxYear: number;
|
5
|
+
LetterDate: string;
|
6
|
+
CountyName: string;
|
7
|
+
CountyAddress: string;
|
8
|
+
CountyCity: string;
|
9
|
+
CountyState: string;
|
10
|
+
CountyPincode: string;
|
11
|
+
NumberOfAccounts: number;
|
12
|
+
CompanyAddress: string;
|
13
|
+
CompanyCity: string;
|
14
|
+
CompanyState: string;
|
15
|
+
CompanyZip: string;
|
16
|
+
CompanyTollFree: string;
|
17
|
+
CompanyPhone: string;
|
18
|
+
CompanyFax: string;
|
19
|
+
CompanyEmail: string;
|
20
|
+
CompanyLogo: string;
|
21
|
+
CompanyPatSignature: string;
|
22
|
+
ProtestBatchNumber: string;
|
23
|
+
ProtestingAccounts: LiquidJSProtestingAccountInfo[];
|
24
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export interface LiquidJSProtestingAccountInfo {
|
2
|
+
TaxYear: number;
|
3
|
+
AccountNumber: string;
|
4
|
+
PropertyAddress: string;
|
5
|
+
LegalDescription: string;
|
6
|
+
CadLegalName: string;
|
7
|
+
SubagentCode: string;
|
8
|
+
AgentCode: string;
|
9
|
+
HB201: string;
|
10
|
+
MarketEquityOtherMEO: string;
|
11
|
+
ProtestFilingDate: string;
|
12
|
+
LUC: string;
|
13
|
+
GeoID: string;
|
14
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { LiquidJSProtestLetterDataParser } from "./LiquidJSProtestLetterDataParser";
|
2
|
+
import { DatasetSelectOperation } from "Masters/DatasetSelectOperation";
|
3
|
+
import { ProtestDocumentTypes } from "./ProtestDocumentTypes";
|
4
|
+
|
5
|
+
export interface ProtestLetterTemplateParams {
|
6
|
+
ProtestFilingId: number;
|
7
|
+
LiquidJSProtestLetterDataParser: LiquidJSProtestLetterDataParser;
|
8
|
+
ExportExcelColumns: DatasetSelectOperation[]
|
9
|
+
ProtestDocumentTypes: ProtestDocumentTypes[]
|
10
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -12,10 +12,16 @@ import { ProtestHistoryParam } from "./ProtestHistoryParam";
|
|
12
12
|
import { InitiateProtestParam } from "./InitiateProtestParam";
|
13
13
|
import { ProtestModeModifiedInfo } from "./ProtestModeModifiedInfo";
|
14
14
|
import { ProtestInitiateServiceParam } from "./ProtestInitiateServiceParam";
|
15
|
+
import { ProtestDocumentTypes } from "./ProtestDocumentTypes";
|
16
|
+
import { LiquidJSProtestingAccountInfo } from "./LiquidJSProtestingAccountInfo";
|
17
|
+
import { LiquidJSProtestLetterDataParser } from "./LiquidJSProtestLetterDataParser";
|
18
|
+
import { ProtestLetterTemplateParams } from "./ProtestLetterTemplateParams";
|
15
19
|
|
16
20
|
export {
|
17
21
|
ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
|
18
22
|
ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
|
19
23
|
ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
|
20
|
-
InitiateProtestParam, ProtestModeModifiedInfo, ProtestInitiateServiceParam
|
24
|
+
InitiateProtestParam, ProtestModeModifiedInfo, ProtestInitiateServiceParam,
|
25
|
+
ProtestDocumentTypes, LiquidJSProtestingAccountInfo, LiquidJSProtestLetterDataParser,
|
26
|
+
ProtestLetterTemplateParams
|
21
27
|
};
|