spartaxx.businessmodels 1.0.195 → 1.0.197

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,4 +20,8 @@ export interface AccountInfo {
20
20
  FinalValue?: string;
21
21
  StandardContingency?: string;
22
22
  LitigationContingency?: string;
23
+ OwnerName?: string;
24
+ OwnerEmail?: string;
25
+ OwnerPhone?: string;
26
+ OwnerAddress?: string;
23
27
  }
package/CCC/CCCModel.ts CHANGED
@@ -12,7 +12,6 @@ import { BlastCountyPriorityResults } from "./BlastCountyPriorityResults";
12
12
  import { GenarateClientPackageParam } from "./GenarateClientPackageParam";
13
13
  import { HistroyInfo } from "./HistroyInfo";
14
14
  import { HistroyInfoResults } from "./HistroyInfoResults";
15
- import { ClientPackageDocument } from "./ClientPackageDocuments";
16
15
 
17
16
  export {
18
17
  ScoreCardDetails,
@@ -28,6 +27,5 @@ export {
28
27
  BlastCountyPriorityResults,
29
28
  GenarateClientPackageParam,
30
29
  HistroyInfo,
31
- HistroyInfoResults,
32
- ClientPackageDocument
30
+ HistroyInfoResults
33
31
  }
package/CCC/ClientInfo.ts CHANGED
@@ -42,5 +42,16 @@ export interface ClientInfo {
42
42
  IsHasResidentialAccount?: boolean;
43
43
  IsNeedPropertySurveyForm?: boolean;
44
44
  ESignLink?: string;
45
+ ClientEmail?: string;
46
+ ClientAddress?: string;
47
+ ClientCity?: string;
48
+ ClientState?: string;
49
+ ClientPinCode?: string;
50
+ Day?: number;
51
+ Month?: number;
52
+ Year?: number;
53
+ Terms?: string;
54
+ Title?: string;
55
+ ClientSignature?: string;
45
56
  AccountInfo?: AccountInfo[];
46
57
  }
@@ -1,6 +1,10 @@
1
1
  export interface GenarateClientPackageParam {
2
2
  LeadId?: number;
3
3
  ClientId?: number;
4
- DocuementIds?: string[];
5
- ItIsBeforeClient?: boolean;
6
- }
4
+ AccountId?: number;
5
+ PackageId?: number;
6
+ BeforeClient?: boolean;
7
+ FileGenOutputPath?: string;
8
+ FileName?: string;
9
+ OutputBase64Format?: string;
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.195",
3
+ "version": "1.0.197",
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,9 +0,0 @@
1
- export interface ClientPackageDocument {
2
- Id?: string;
3
- Name?: string;
4
- QueueName?: string;
5
- DocumentOrder?: string;
6
- Description?: string;
7
- OutputFilePath?: string;
8
- OutputBase64Format?: string;
9
- }