spartaxx.businessmodels 1.0.320 → 1.0.322

Sign up to get free protection for your applications and to get access to all the features.
@@ -82,7 +82,11 @@ function createDefaultAccountInfo() {
82
82
  AccountSourceId: 0,
83
83
  ReasonCode: "",
84
84
  AccountStateId: 0,
85
- CountyStateName: ""
85
+ CountyStateName: "",
86
+ selectedOption: {
87
+ value: "",
88
+ label: ""
89
+ }
86
90
  };
87
91
  });
88
92
  }
@@ -72,6 +72,7 @@ export interface AccountInfo {
72
72
  ReasonCode?: string;
73
73
  AccountStateId?: number;
74
74
  CountyStateName?: string;
75
+ selectedOption?: { value: string; label: string };
75
76
  }
76
77
 
77
78
  export async function createDefaultAccountInfo(): Promise<AccountInfo> {
@@ -147,6 +148,10 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
147
148
  AccountSourceId: 0,
148
149
  ReasonCode: "",
149
150
  AccountStateId: 0,
150
- CountyStateName: ""
151
+ CountyStateName: "",
152
+ selectedOption: {
153
+ value: "",
154
+ label: ""
155
+ }
151
156
  };
152
157
  }
@@ -3,12 +3,14 @@ import { ManageCampaignCriteria } from "./ManageCampaignCriteria";
3
3
  import { ManageCampaignCriteriaLookup } from "./ManageCampaignCriteriaLookup";
4
4
  import { CampaignFilterCriteria } from "./CampaignFilterCriteria";
5
5
  import { CampaignFilterCriteriaFields } from "./CampaignFilterCriteriaFields";
6
+ import { ConciergeBlastInfo } from "./ConciergeBlastInfo";
6
7
 
7
8
  export {
8
9
  CampaignCriteria,
9
10
  ManageCampaignCriteria,
10
11
  ManageCampaignCriteriaLookup,
11
12
  CampaignFilterCriteria,
12
- CampaignFilterCriteriaFields
13
+ CampaignFilterCriteriaFields,
14
+ ConciergeBlastInfo
13
15
  }
14
16
 
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,18 @@
1
+ export interface ConciergeBlastInfo {
2
+ ClientId?: number
3
+ ClientNumber?: number;
4
+ ClientName?: String;
5
+ MailingAddress?: String;
6
+ Email?: String;
7
+ Phone?: String;
8
+ SelectProperty?: String;
9
+ Remarks?: String;
10
+ Priority?: String;
11
+ AppointmentModeId?: number;
12
+ AppointmentDateTimeFrom?: Date;
13
+ AppointmentStatusId?: number;
14
+ AppointmentLocation?: string;
15
+ CreateBy?: number;
16
+ CreatedDate?: Date;
17
+ SiteVisitProperty?: number;
18
+ }
@@ -3,7 +3,7 @@ import { TermsType } from "./TermsType"
3
3
  export interface ClientSetupParam {
4
4
  ClientSetupInfo: ClientSetupInfo;
5
5
  QueueId: string;
6
- isSocketRequest?:boolean;
6
+ isSocketRequest?: boolean;
7
7
  }
8
8
 
9
9
  export interface ClientSetupInfo {
@@ -88,7 +88,8 @@ export interface ClientSetupInfo {
88
88
  TxrollOcaluc: string;
89
89
  IsRendition: boolean;
90
90
  IsFinancial: boolean;
91
- ProjectName:string;
91
+ ProjectName: string;
92
+ AccountReasonId: number;
92
93
  }
93
94
 
94
95
  export interface SelectedPropertyList {
@@ -130,11 +131,11 @@ export interface SelectedPropertyList {
130
131
  owneraddress3?: string;
131
132
  ProjectName?: string;
132
133
 
133
-
134
- PropCityName:string;
135
- PropAddress:string;
136
- PropZipcode:string;
137
- PropStateName:string;
134
+
135
+ PropCityName: string;
136
+ PropAddress: string;
137
+ PropZipcode: string;
138
+ PropStateName: string;
138
139
  }
139
140
 
140
141
  export interface SelectedAllProperty {
@@ -146,8 +147,8 @@ export interface SelectedAllProperty {
146
147
 
147
148
  export interface OnlineClientSetupMaster {
148
149
  OnlineClientSetupInfo: OnlineClientSetupInfo
149
- SelectedPropertyList: SelectedPropertyList[];
150
- isSocketRequest?:boolean;
150
+ SelectedPropertyList: SelectedPropertyList[];
151
+ isSocketRequest?: boolean;
151
152
 
152
153
  }
153
154
 
@@ -173,5 +174,5 @@ export interface OnlineClientSetupInfo {
173
174
  AgentId: number;
174
175
  ReferralEmployeeId?: number;
175
176
  TxrollLegalDescription?: string;
176
- SocketToken?:string;
177
+ SocketToken?: string;
177
178
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.320",
3
+ "version": "1.0.322",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {