spartaxx.businessmodels 1.0.327 → 1.0.329
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/AccountInfo.ts
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
import { SelectOpentionLookup } from "../Masters/SelectOpentionLookup";
|
2
|
+
|
1
3
|
export interface AccountInfo {
|
2
4
|
ClientId?: number;
|
3
5
|
AccountId?: number;
|
@@ -72,7 +74,7 @@ export interface AccountInfo {
|
|
72
74
|
ReasonCode?: string;
|
73
75
|
AccountStateId?: number;
|
74
76
|
CountyStateName?: string;
|
75
|
-
selectedOption?:
|
77
|
+
selectedOption?: SelectOpentionLookup | null;
|
76
78
|
}
|
77
79
|
|
78
80
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
package/Common/AppConfigHub.ts
CHANGED
@@ -218,18 +218,18 @@ export interface AppConfigHub {
|
|
218
218
|
CPckFilenamePrefixCLAofAPropertySurvey: string;
|
219
219
|
CPckFileNamePrefixNationalAgreementFormCoverLetter: string;
|
220
220
|
CPckFilenamePrefixCLPropertySurvey: string;
|
221
|
-
DNDNextYearServicePackageId:
|
222
|
-
CCCPkgInactiveCAFTypeId:
|
221
|
+
DNDNextYearServicePackageId: string;
|
222
|
+
CCCPkgInactiveCAFTypeId: string;
|
223
223
|
CCCPkgInactiveClientRemarks: string;
|
224
|
-
CCCPkgInactiveLetterTypeId:
|
225
|
-
CCCPkgDNDCAFTypeId:
|
224
|
+
CCCPkgInactiveLetterTypeId: string;
|
225
|
+
CCCPkgDNDCAFTypeId: string;
|
226
226
|
CCCPkgDNDClientRemarks: string;
|
227
227
|
CCCPkgDNDReasonCode: string;
|
228
|
-
CCCPkgDNDLetterTypeId:
|
229
|
-
CCCPkgReactiveCAFTypeId:
|
228
|
+
CCCPkgDNDLetterTypeId: string;
|
229
|
+
CCCPkgReactiveCAFTypeId: string;
|
230
230
|
CCCPkgReactiveClientRemarks: string;
|
231
231
|
CCCPkgReactiveReasonCode: string;
|
232
|
-
CCCPkgReactiveLetterTypeId:
|
232
|
+
CCCPkgReactiveLetterTypeId: string;
|
233
233
|
cpckCLPropertySurvey: string;
|
234
234
|
cpckCLAgreementOnly: string;
|
235
235
|
cpckCLAofAAgreementOnly: string;
|
package/Masters/MasterModels.ts
CHANGED
@@ -6,9 +6,11 @@ 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";
|
9
10
|
|
10
11
|
export {
|
11
12
|
APIMaster, ApiMasterDatasetColumns, DataSetMaster,
|
12
13
|
DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
|
13
|
-
LookupMaster, createLookupMaster, ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster
|
14
|
+
LookupMaster, createLookupMaster, ReferenceTypeLookupMaster, createDefaultReferenceTypeLookupMaster,
|
15
|
+
SelectOpentionLookup
|
14
16
|
};
|