spartaxx.businessmodels 1.0.329 → 1.0.331

Sign up to get free protection for your applications and to get access to all the features.
@@ -83,7 +83,10 @@ function createDefaultAccountInfo() {
83
83
  ReasonCode: "",
84
84
  AccountStateId: 0,
85
85
  CountyStateName: "",
86
- selectedOption: null
86
+ selectedOption: {
87
+ value: "",
88
+ label: ""
89
+ }
87
90
  };
88
91
  });
89
92
  }
@@ -1,5 +1,3 @@
1
- import { SelectOpentionLookup } from "../Masters/SelectOpentionLookup";
2
-
3
1
  export interface AccountInfo {
4
2
  ClientId?: number;
5
3
  AccountId?: number;
@@ -74,7 +72,7 @@ export interface AccountInfo {
74
72
  ReasonCode?: string;
75
73
  AccountStateId?: number;
76
74
  CountyStateName?: string;
77
- selectedOption?: SelectOpentionLookup | null;
75
+ selectedOption?: { value: string; label: string };
78
76
  }
79
77
 
80
78
  export async function createDefaultAccountInfo(): Promise<AccountInfo> {
@@ -151,6 +149,9 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
151
149
  ReasonCode: "",
152
150
  AccountStateId: 0,
153
151
  CountyStateName: "",
154
- selectedOption: null
152
+ selectedOption: {
153
+ value: "",
154
+ label: ""
155
+ }
155
156
  };
156
157
  }
@@ -1,13 +1,18 @@
1
1
  export interface ConciergeBlastInfo {
2
- ClientId?: number;
3
- ClientNumber?: string;
4
- ClientName?: string;
5
- MailingAddress?: string;
6
- EmailAddress?: string;
7
- PhoneNumber?: string;
8
- AppointmentDateTimeFrom?: string;
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;
9
14
  AppointmentLocation?: string;
10
- Remarks?: string;
11
- AccountId?: number;
12
- AccountNumber?: string;
15
+ CreateBy?: number;
16
+ CreatedDate?: Date;
17
+ SiteVisitProperty?: number;
13
18
  }
@@ -90,6 +90,7 @@ export interface ClientSetupInfo {
90
90
  IsFinancial: boolean;
91
91
  ProjectName: string;
92
92
  AccountReasonId: number;
93
+ TxrollCadluc: string;
93
94
  }
94
95
 
95
96
  export interface SelectedPropertyList {
@@ -136,6 +137,7 @@ export interface SelectedPropertyList {
136
137
  PropAddress: string;
137
138
  PropZipcode: string;
138
139
  PropStateName: string;
140
+ TxrollCadluc: string;
139
141
  }
140
142
 
141
143
  export interface SelectedAllProperty {
@@ -62,4 +62,5 @@ export interface PropertyAddress {
62
62
  LanduseCode: string;
63
63
  Score: number;
64
64
  ItIsCore: boolean;
65
+ Cadluc: string;
65
66
  }
@@ -218,18 +218,18 @@ export interface AppConfigHub {
218
218
  CPckFilenamePrefixCLAofAPropertySurvey: string;
219
219
  CPckFileNamePrefixNationalAgreementFormCoverLetter: string;
220
220
  CPckFilenamePrefixCLPropertySurvey: string;
221
- DNDNextYearServicePackageId: string;
222
- CCCPkgInactiveCAFTypeId: string;
221
+ DNDNextYearServicePackageId: number;
222
+ CCCPkgInactiveCAFTypeId: number;
223
223
  CCCPkgInactiveClientRemarks: string;
224
- CCCPkgInactiveLetterTypeId: string;
225
- CCCPkgDNDCAFTypeId: string;
224
+ CCCPkgInactiveLetterTypeId: number;
225
+ CCCPkgDNDCAFTypeId: number;
226
226
  CCCPkgDNDClientRemarks: string;
227
227
  CCCPkgDNDReasonCode: string;
228
- CCCPkgDNDLetterTypeId: string;
229
- CCCPkgReactiveCAFTypeId: string;
228
+ CCCPkgDNDLetterTypeId: number;
229
+ CCCPkgReactiveCAFTypeId: number;
230
230
  CCCPkgReactiveClientRemarks: string;
231
231
  CCCPkgReactiveReasonCode: string;
232
- CCCPkgReactiveLetterTypeId: string;
232
+ CCCPkgReactiveLetterTypeId: number;
233
233
  cpckCLPropertySurvey: string;
234
234
  cpckCLAgreementOnly: string;
235
235
  cpckCLAofAAgreementOnly: string;
@@ -6,11 +6,9 @@ import { DatasetFilterOperation } from "./DatasetFilterOperation";
6
6
  import { DatasetSortingOperation } from "./DatasetSortingOperation";
7
7
  import { LookupMaster, createLookupMaster } from "./LookupMaster";
8
8
  import { ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster } from "./ReferenceTypeLookupMaster";
9
- import { SelectOpentionLookup } from "./SelectOpentionLookup";
10
9
 
11
10
  export {
12
11
  APIMaster, ApiMasterDatasetColumns, DataSetMaster,
13
12
  DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
14
- LookupMaster, createLookupMaster, ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster,
15
- SelectOpentionLookup
13
+ LookupMaster, createLookupMaster, ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster
16
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.329",
3
+ "version": "1.0.331",
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,4 +0,0 @@
1
- export interface SelectOpentionLookup {
2
- label: string;
3
- value: string;
4
- }