spartaxx.businessmodels 1.0.88 → 1.0.90

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
1
1
  export interface TemplateCategory {
2
- ID: number,
3
- Name: string
2
+ Id: number,
3
+ CategoryName: string
4
4
  }
@@ -1,7 +1,7 @@
1
1
  export interface TemplateName {
2
- ID: number,
3
- Name: string,
2
+ Id: number,
4
3
  TemplateName: string,
4
+ Template: string,
5
5
  CreatedBy: number,
6
6
  ModifiedBy: number,
7
7
  TemplateMethodId: number,
@@ -8,6 +8,4 @@ export interface ProtestAccountParam {
8
8
  OffsetValue?: number;
9
9
  FetchRecordsCounts?: number;
10
10
  DatasetSortingOperation?: DatasetSortingOperation;
11
- IsSelectedAll?:boolean;
12
- SelectedCounties?: number[];
13
11
  }
@@ -1,11 +1,7 @@
1
1
  export interface ProtestDocuments {
2
- ProtestStatus: string;
3
- AuditStatus: string;
4
- HB201Status: string;
5
2
  ProtestLetterPath?: string;
6
3
  ProtestLetterPWImageId?: string;
7
4
  ProtestHB201LetterPath?: string;
8
5
  ProtestHB201LetterPWImageId?: string;
9
6
  ProtestExcelFilePath?: string;
10
- ProtestFilingIds: number[];
11
7
  }
@@ -12,16 +12,10 @@ 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";
19
15
 
20
16
  export {
21
17
  ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
22
18
  ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
23
19
  ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
24
- InitiateProtestParam, ProtestModeModifiedInfo, ProtestInitiateServiceParam,
25
- ProtestDocumentTypes, LiquidJSProtestingAccountInfo, LiquidJSProtestLetterDataParser,
26
- ProtestLetterTemplateParams
20
+ InitiateProtestParam, ProtestModeModifiedInfo, ProtestInitiateServiceParam
27
21
  };
@@ -7,9 +7,6 @@ export interface ProtestingAccounts {
7
7
  TotalRecords?: number;
8
8
  TotalCounties?: number;
9
9
  TotalAccounts?: number;
10
- TotalEmailModeCounties?: number;
11
- TotalUSmailModeCounties?: number;
12
- TotalOnlinePortalModeCounties?: number;
13
10
  ProtestingAccountInfo?: ProtestingAccountInfo[];
14
11
  DatasetSelectOperation?: DatasetSelectOperation[];
15
12
  DatasetFilterOperation?: DatasetFilterOperation[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.88",
3
+ "version": "1.0.90",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,24 +0,0 @@
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
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,14 +0,0 @@
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
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +0,0 @@
1
- export interface ProtestDocumentTypes {
2
- DocumentId: number,
3
- DocumentType: string,
4
- LetterGeneratePath: string,
5
- TemplatePath: string;
6
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,10 +0,0 @@
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
- }