spartaxx.businessmodels 1.0.111 → 1.0.113

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,8 +8,11 @@ import { RabbitMQQueueInfo } from "./RabbitMQQueueInfo";
8
8
  import { TemplateCategory } from "./TemplateCategory";
9
9
  import { TemplateName } from "./TemplateName";
10
10
  import { TemplateType } from "./TemplateType";
11
+ import { ManageFilters } from "./ManageFilters";
12
+ import { ManageFrequencyConfig } from "./ManageFrequency";
13
+ import { ManageSchedulers } from "./ManageSchedulers";
11
14
 
12
15
  export {
13
16
  ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
14
- RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType
17
+ RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig, ManageSchedulers
15
18
  };
@@ -0,0 +1,6 @@
1
+ export interface ManageFilters {
2
+ FilterId?: number;
3
+ CriteriaName?: string;
4
+ Criteria?: string;
5
+ ProcessModule?: number;
6
+ }
@@ -0,0 +1,7 @@
1
+ export interface ManageFrequencyConfig {
2
+ Year?: number;
3
+ Month?: string;
4
+ Week?: string;
5
+ Day?: string;
6
+ StartTime?: string;
7
+ }
@@ -0,0 +1,7 @@
1
+ export interface ManageSchedulers {
2
+ SchedulerId?: number;
3
+ SchedulerName?: string;
4
+ FilterId?: number;
5
+ FrequencyConfig?: string;
6
+ ProcessModule?: number;
7
+ }
@@ -31,4 +31,5 @@ export interface ProtestHistoryInfo {
31
31
  TotalRecordCount?: number;
32
32
  CalendarDuration?: string;
33
33
  AuditedUserId?: number;
34
+ Mode?: string;
34
35
  }
@@ -1,11 +1,8 @@
1
1
  import { ProtestDocuments } from "./ProtestDocuments";
2
- import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
3
2
  import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
4
3
  import { ProtestingAccountInfo } from "./ProtestingAccountInfo";
5
4
  import { ProtestingAccounts } from "./ProtestingAccounts";
6
5
  import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
7
- import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
8
- import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
9
6
  import { ProtestAccountParam } from "./ProtestAccountParam";
10
7
  import { ProtestHistory } from "./ProtestHistory";
11
8
  import { ProtestHistoryParam } from "./ProtestHistoryParam";
@@ -16,14 +13,12 @@ import { ProtestDocumentTypes } from "./ProtestDocumentTypes";
16
13
  import { LiquidJSProtestingAccountInfo } from "./LiquidJSProtestingAccountInfo";
17
14
  import { LiquidJSProtestLetterDataParser } from "./LiquidJSProtestLetterDataParser";
18
15
  import { ProtestLetterTemplateParams } from "./ProtestLetterTemplateParams";
19
- import { ProtestFilters } from "./ProtestFilters";
20
16
  import { ProtestSchedulers } from "./ProtestSchedulers";
21
17
 
22
18
  export {
23
19
  ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts,
24
- ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument,
25
20
  ProtestingAccountInfo, ProtestAccountParam, ProtestHistory, ProtestHistoryParam,
26
21
  InitiateProtestParam, ProtestModeModifiedInfo, ProtestInitiateServiceParam,
27
22
  ProtestDocumentTypes, LiquidJSProtestingAccountInfo, LiquidJSProtestLetterDataParser,
28
- ProtestLetterTemplateParams, ProtestFilters, ProtestSchedulers
23
+ ProtestLetterTemplateParams, ProtestSchedulers
29
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.111",
3
+ "version": "1.0.113",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,12 +0,0 @@
1
- export interface PTBexarExcelDocument {
2
- TaxYear?: number;
3
- ProtestFilingDate?: string;
4
- AccountNumber?: string;
5
- PropertyAddress?: string;
6
- LegalDescription?: string;
7
- CADLegalName?: string;
8
- LUC?: string;
9
- AgentCode?: string;
10
- HB201?: string;
11
- MarketEquityOther?: string;
12
- }
@@ -1,7 +0,0 @@
1
- import { ProtestSchedulers } from "./ProtestSchedulers";
2
-
3
- export interface ProtestFilters extends ProtestSchedulers {
4
- FilterId?: number;
5
- CriteriaName?: string;
6
- Criteria?: string;
7
- }
@@ -1,15 +0,0 @@
1
- export interface ProtestHB201RequestDocument {
2
- DocDate?: string;
3
- TaxYear?: number;
4
- AccountListingTable?: AccountListingTable[];
5
- }
6
-
7
- export interface AccountListingTableHeaders {
8
- AccountNumber?: string;
9
- Address?: string;
10
- }
11
-
12
- export interface AccountListingTable {
13
- Headers?: AccountListingTableHeaders[];
14
- Rows?: string[];
15
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,18 +0,0 @@
1
- export interface ProtestPTFayetteDcoument {
2
- DocDate?: string;
3
- NoOfAccounts?:number,
4
- TaxYear?:number;
5
- AccountListingTable?: AccountListingTable[];
6
- }
7
-
8
- export interface AccountListingTableHeaders {
9
- AccountNumber?: string;
10
- Address?: string;
11
- LegalDescription?: string;
12
- CADLegalName?: string;
13
- }
14
-
15
- export interface AccountListingTable {
16
- Headers?: AccountListingTableHeaders[];
17
- Rows?: string[];
18
- }