spartaxx.businessmodels 1.0.112 → 1.0.114
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/ClientSetup/PropertyAddress.ts +1 -0
- package/Common/APICommonResponse.ts +5 -0
- package/Common/CommonModel.ts +6 -1
- package/Common/ManageFilters.ts +6 -0
- package/Common/ManageFrequency.ts +7 -0
- package/Common/ManageSchedulers.ts +7 -0
- package/Protest/ProtestModels.ts +1 -6
- package/TemplateManagement/TemplateInfo.js +2 -0
- package/TemplateManagement/TemplateInfo.ts +12 -0
- package/TemplateManagement/TemplateMaster.js +2 -0
- package/TemplateManagement/TemplateMaster.ts +6 -0
- package/TemplateManagement/TemplateModel.js +2 -0
- package/TemplateManagement/TemplateModel.ts +6 -0
- package/package.json +1 -1
- package/Protest/PTBexarExcelDocument.ts +0 -12
- package/Protest/ProtestFilters.ts +0 -7
- package/Protest/ProtestHB201RequestDocument.ts +0 -15
- package/Protest/ProtestPTFayetteDocument.ts +0 -18
- /package/{Protest/PTBexarExcelDocument.js → Common/APICommonResponse.js} +0 -0
- /package/{Protest/ProtestFilters.js → Common/ManageFilters.js} +0 -0
- /package/{Protest/ProtestHB201RequestDocument.js → Common/ManageFrequency.js} +0 -0
- /package/{Protest/ProtestPTFayetteDocument.js → Common/ManageSchedulers.js} +0 -0
package/Common/CommonModel.ts
CHANGED
@@ -8,8 +8,13 @@ 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";
|
14
|
+
import { APICommonResponse } from "./APICommonResponse";
|
11
15
|
|
12
16
|
export {
|
13
17
|
ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
|
14
|
-
RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType
|
18
|
+
RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig, ManageSchedulers,
|
19
|
+
APICommonResponse
|
15
20
|
};
|
package/Protest/ProtestModels.ts
CHANGED
@@ -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,
|
23
|
+
ProtestLetterTemplateParams, ProtestSchedulers
|
29
24
|
};
|
@@ -0,0 +1,12 @@
|
|
1
|
+
export interface TemplateInfo {
|
2
|
+
ModuleId: number,
|
3
|
+
ModuleName: string,
|
4
|
+
DocumentId: number,
|
5
|
+
DocumentName: string,
|
6
|
+
TemplateId: number,
|
7
|
+
TemplateName: string,
|
8
|
+
SectionId: number,
|
9
|
+
SectionName: string,
|
10
|
+
ContentId: number;
|
11
|
+
HtmlContent: string
|
12
|
+
}
|
package/package.json
CHANGED
@@ -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,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,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
|
-
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|