spartaxx.businessmodels 1.0.90 → 1.0.92

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,25 @@
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
+ ProtestMode: string;
25
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -8,4 +8,6 @@ export interface ProtestAccountParam {
8
8
  OffsetValue?: number;
9
9
  FetchRecordsCounts?: number;
10
10
  DatasetSortingOperation?: DatasetSortingOperation;
11
+ IsSelectedAll?:boolean;
12
+ SelectedCounties?: number[];
11
13
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export interface ProtestDocumentTypes {
2
+ DocumentId: number,
3
+ DocumentType: string,
4
+ LetterGeneratePath: string,
5
+ LetterFileNamePrefix: string;
6
+ TemplatePath: string;
7
+ }
@@ -1,7 +1,11 @@
1
1
  export interface ProtestDocuments {
2
+ ProtestStatus: string;
3
+ AuditStatus: string;
4
+ HB201Status: string;
2
5
  ProtestLetterPath?: string;
3
6
  ProtestLetterPWImageId?: string;
4
7
  ProtestHB201LetterPath?: string;
5
8
  ProtestHB201LetterPWImageId?: string;
6
9
  ProtestExcelFilePath?: string;
10
+ ProtestFilingIds: number[];
7
11
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -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
  };
@@ -7,6 +7,9 @@ export interface ProtestingAccounts {
7
7
  TotalRecords?: number;
8
8
  TotalCounties?: number;
9
9
  TotalAccounts?: number;
10
+ TotalEmailModeCounties?: number;
11
+ TotalUSmailModeCounties?: number;
12
+ TotalOnlinePortalModeCounties?: number;
10
13
  ProtestingAccountInfo?: ProtestingAccountInfo[];
11
14
  DatasetSelectOperation?: DatasetSelectOperation[];
12
15
  DatasetFilterOperation?: DatasetFilterOperation[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {