spartaxx.businessmodels 1.0.113 → 1.0.114

Sign up to get free protection for your applications and to get access to all the features.
@@ -58,4 +58,5 @@ export interface PropertyAddress {
58
58
  OwnerAddress2: string;
59
59
  OwnerAddress3: string;
60
60
  JurisdictionsCode: string;
61
+ Ocaluc: string;
61
62
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface APICommonResponse {
2
+ success: boolean,
3
+ message: string,
4
+ data: any
5
+ }
@@ -11,8 +11,10 @@ import { TemplateType } from "./TemplateType";
11
11
  import { ManageFilters } from "./ManageFilters";
12
12
  import { ManageFrequencyConfig } from "./ManageFrequency";
13
13
  import { ManageSchedulers } from "./ManageSchedulers";
14
+ import { APICommonResponse } from "./APICommonResponse";
14
15
 
15
16
  export {
16
17
  ExcelExport, FileGenConfig, GeneratePdfServiceParams, PdfExport, PuppeteerOptionsMargin, PuppeteerOptions,
17
- RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig, ManageSchedulers
18
+ RabbitMQQueueInfo, TemplateCategory, TemplateName, TemplateType, ManageFilters, ManageFrequencyConfig, ManageSchedulers,
19
+ APICommonResponse
18
20
  };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface TemplateMaster {
2
+ ItemId: number,
3
+ ItemName: string,
4
+ ItemTypeId: number,
5
+ ActionTypeId: number
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { TemplateInfo } from "./TemplateInfo";
2
+ import { TemplateMaster } from "./TemplateMaster";
3
+
4
+ export {
5
+ TemplateInfo, TemplateMaster
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.113",
3
+ "version": "1.0.114",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {