spartaxx.businessmodels 1.0.117 → 1.0.119

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,5 +5,6 @@ export interface DocumentInfo {
5
5
  TaxYear: string;
6
6
  DocumentId: number;
7
7
  DocumentTypeId: number;
8
+ DocumentType: string;
8
9
  County: string;
9
10
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { LookupMaster } from "Masters/LookupMaster";
2
+
3
+ export interface MarketingDocumentsLookupMaster {
4
+ DocumentTypeList: LookupMaster[],
5
+ CountyList: LookupMaster[]
6
+ }
@@ -1,6 +1,8 @@
1
1
  import { DocumentType } from "./DocumentType";
2
2
  import { DocumentInfo } from "./DocumentInfo";
3
+ import { LookupMaster } from "Masters/LookupMaster";
4
+ import { MarketingDocumentsLookupMaster } from "./MarketingDocumentsLookupMaster";
3
5
 
4
6
  export {
5
- DocumentType, DocumentInfo
7
+ DocumentType, DocumentInfo, LookupMaster, MarketingDocumentsLookupMaster
6
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.117",
3
+ "version": "1.0.119",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {