@leavittsoftware/lg-core-typescript 2.0.294 → 2.0.298
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lg.apfc.ts +193 -395
- package/package.json +1 -1
package/lg.apfc.ts
CHANGED
|
@@ -8,238 +8,6 @@ export interface IIdentity {
|
|
|
8
8
|
Id: number;
|
|
9
9
|
}
|
|
10
10
|
|
|
11
|
-
export interface DAR_ALLL {
|
|
12
|
-
AccountNumber: string | null;
|
|
13
|
-
AgentName: string | null;
|
|
14
|
-
AmountFinanced: Partial<number> | null;
|
|
15
|
-
AuditlFactor: Partial<number> | null;
|
|
16
|
-
CancellationDate: string | null;
|
|
17
|
-
Capital_Balance_Due: Partial<number> | null;
|
|
18
|
-
DaysPastDue: number | null;
|
|
19
|
-
Grade: string | null;
|
|
20
|
-
InsuredName: string | null;
|
|
21
|
-
InterestEarnedAfterCancel: Partial<number> | null;
|
|
22
|
-
NormalFactor: Partial<number> | null;
|
|
23
|
-
OVERUNDER: string | null;
|
|
24
|
-
Tier: string | null;
|
|
25
|
-
TierOrder: string | null;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export interface DAR_ALLL_RPT {
|
|
29
|
-
AccountNumber: string | null;
|
|
30
|
-
AgencyCommitment: Partial<number> | null;
|
|
31
|
-
AgentName: string | null;
|
|
32
|
-
AmountFinanced: Partial<number> | null;
|
|
33
|
-
AuditlFactor: Partial<number> | null;
|
|
34
|
-
Calculated_Required_Allocation: Partial<number> | null;
|
|
35
|
-
CancellationDate: string | null;
|
|
36
|
-
Capital_Balance_Due: Partial<number> | null;
|
|
37
|
-
CarrierGACommitment: Partial<number> | null;
|
|
38
|
-
Commitment: string | null;
|
|
39
|
-
CommitmentFrom: string | null;
|
|
40
|
-
Date: string | null;
|
|
41
|
-
DaysPastDue: number | null;
|
|
42
|
-
Grade: string | null;
|
|
43
|
-
InsuredName: string | null;
|
|
44
|
-
InterestEarnedAfterCancel: Partial<number> | null;
|
|
45
|
-
Net_Amount_At_Risk: Partial<number> | null;
|
|
46
|
-
NormalFactor: Partial<number> | null;
|
|
47
|
-
OVERUNDER: string | null;
|
|
48
|
-
Tier: string | null;
|
|
49
|
-
TierOrder: string | null;
|
|
50
|
-
UnderAudit: string | null;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export interface DAR_Base {
|
|
54
|
-
AccountNumber: string | null;
|
|
55
|
-
AgentName: string | null;
|
|
56
|
-
AmountFinanced: Partial<number> | null;
|
|
57
|
-
AuditlFactor: Partial<number> | null;
|
|
58
|
-
Balance: Partial<number> | null;
|
|
59
|
-
CancellationDate: string | null;
|
|
60
|
-
Collateral: Partial<number> | null;
|
|
61
|
-
DaysPastDue: number | null;
|
|
62
|
-
GeneralAgentName: string | null;
|
|
63
|
-
Grade: string | null;
|
|
64
|
-
ID: number | null;
|
|
65
|
-
InsuranceCompanyID: number | null;
|
|
66
|
-
InsuranceCompanyName: string | null;
|
|
67
|
-
InsuredName: string | null;
|
|
68
|
-
InterestEarnedAfterCancel: Partial<number>;
|
|
69
|
-
NextPaymentDueDate: string | null;
|
|
70
|
-
NormalFactor: Partial<number> | null;
|
|
71
|
-
OVERUNDER: string | null;
|
|
72
|
-
PolicyInterest: Partial<number> | null;
|
|
73
|
-
PolicyNumber: string | null;
|
|
74
|
-
SubStatusString: string | null;
|
|
75
|
-
Tier: string | null;
|
|
76
|
-
TierOrder: string | null;
|
|
77
|
-
UnearnedPremium: Partial<number> | null;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
export interface CancelledAccounts_Tired_RPT {
|
|
81
|
-
All_Accounts: number;
|
|
82
|
-
Cancellation_Ratio: Partial<number> | null;
|
|
83
|
-
Cancelled_Accounts: number;
|
|
84
|
-
Tier: string | null;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
export interface lb_byCoverageType {
|
|
88
|
-
Balance: Partial<number> | null;
|
|
89
|
-
OVERUNDER: string | null;
|
|
90
|
-
Policies: number | null;
|
|
91
|
-
PolicyType: string | null;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export interface lb_byGeneralAgent {
|
|
95
|
-
Amount_At_Risk: Partial<number> | null;
|
|
96
|
-
Balance: Partial<number> | null;
|
|
97
|
-
C12_Month_Average_Cancellation_Rate_: Partial<number> | null;
|
|
98
|
-
GA_GROUP: string | null;
|
|
99
|
-
OVERUNDER: string | null;
|
|
100
|
-
Polices: number | null;
|
|
101
|
-
WIP_at_GA_Max_Months: number;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
export interface lb_byInsuredEIN {
|
|
105
|
-
Accounts: number | null;
|
|
106
|
-
Balance: Partial<number> | null;
|
|
107
|
-
Client: string | null;
|
|
108
|
-
TopBottom: string | null;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
export interface ALLL_commitment_data {
|
|
112
|
-
AccountNumber: string | null;
|
|
113
|
-
AgencyCommitment: Partial<number> | null;
|
|
114
|
-
CarrierGACommitment: Partial<number> | null;
|
|
115
|
-
Commitment: string | null;
|
|
116
|
-
CommitmentFrom: string | null;
|
|
117
|
-
Date: string | null;
|
|
118
|
-
ID: number;
|
|
119
|
-
LastModified: string | null;
|
|
120
|
-
LastModifiedBy: string | null;
|
|
121
|
-
UnderAudit: string | null;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
export interface Credit_Risk_Policy_Exceptions {
|
|
125
|
-
AccountID: string | null;
|
|
126
|
-
Class: string | null;
|
|
127
|
-
ExceptionDate: string;
|
|
128
|
-
Exceptions: string | null;
|
|
129
|
-
LastModified: string;
|
|
130
|
-
LastModifiedBy: string | null;
|
|
131
|
-
MaxExposure: Partial<number> | null;
|
|
132
|
-
NotesCollectionActivity: string | null;
|
|
133
|
-
ReportID: number;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
export interface AgencyIdMappingToAMC {
|
|
137
|
-
AgencyCoID: string | null;
|
|
138
|
-
AgencyId: string | null;
|
|
139
|
-
tempName: string | null;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
export interface AvgCancelationRate {
|
|
143
|
-
avgCancelationRateID: number;
|
|
144
|
-
created: string;
|
|
145
|
-
createdByID: number;
|
|
146
|
-
rate: Partial<number>;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
export interface InsuranceCompanyManual {
|
|
150
|
-
Address1: string | null;
|
|
151
|
-
Address2: string | null;
|
|
152
|
-
AggregateOutstandingsLimit: string | null;
|
|
153
|
-
AMBest: string | null;
|
|
154
|
-
AMBestGroupNumber: string | null;
|
|
155
|
-
AMBestNumber: string | null;
|
|
156
|
-
AMBestRatingDate: string | null;
|
|
157
|
-
AvailableBalance: Partial<number> | null;
|
|
158
|
-
BadAddress: string | null;
|
|
159
|
-
City: string | null;
|
|
160
|
-
CompanyType: string | null;
|
|
161
|
-
Contact: string | null;
|
|
162
|
-
Country: string | null;
|
|
163
|
-
DateCreated: string | null;
|
|
164
|
-
Email: string | null;
|
|
165
|
-
Fax: string | null;
|
|
166
|
-
GAOwnerName: string | null;
|
|
167
|
-
HomeOfficeName: string | null;
|
|
168
|
-
InternalID: number;
|
|
169
|
-
NAICNumber: string | null;
|
|
170
|
-
Name: string | null;
|
|
171
|
-
NextReviewDate: string | null;
|
|
172
|
-
OutstandingBalance: Partial<number> | null;
|
|
173
|
-
Phone: string | null;
|
|
174
|
-
RemittanceSchedule: string | null;
|
|
175
|
-
SalesExecName: string | null;
|
|
176
|
-
SearchCode: string | null;
|
|
177
|
-
SiteID: number | null;
|
|
178
|
-
State: string | null;
|
|
179
|
-
StatusDetailName: string | null;
|
|
180
|
-
StatusName: string | null;
|
|
181
|
-
Suspended: number | null;
|
|
182
|
-
TaxID: string | null;
|
|
183
|
-
Zip: string | null;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
export interface AF_Threshold {
|
|
187
|
-
Class: string | null;
|
|
188
|
-
ID: number;
|
|
189
|
-
Type: string | null;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
export interface Bankruptcy {
|
|
193
|
-
Class: string | null;
|
|
194
|
-
ID: number;
|
|
195
|
-
Type: string | null;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
export interface FirstPaymentDue {
|
|
199
|
-
Class: string | null;
|
|
200
|
-
ID: number | null;
|
|
201
|
-
Type: string | null;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
export interface IC_Rating {
|
|
205
|
-
Class: string | null;
|
|
206
|
-
ID: number | null;
|
|
207
|
-
Type: string | null;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
export interface MEP100 {
|
|
211
|
-
Class: string | null;
|
|
212
|
-
ID: number | null;
|
|
213
|
-
Type: string | null;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
export interface AF_byAgent_3m_1y_RPT {
|
|
217
|
-
Accounts_MTD: number;
|
|
218
|
-
Accounts_MTD_2: number;
|
|
219
|
-
Accounts_MTD_3: number;
|
|
220
|
-
AgentName: string | null;
|
|
221
|
-
AmountFinanced_MTD: Partial<number>;
|
|
222
|
-
AmountFinanced_MTD_2: Partial<number>;
|
|
223
|
-
AmountFinanced_MTD_3: Partial<number>;
|
|
224
|
-
AmountFinanced_YTD: Partial<number>;
|
|
225
|
-
City: string | null;
|
|
226
|
-
State: string | null;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
export interface CompensationvsIncome_byAgency_RPT {
|
|
230
|
-
AgentCity: string | null;
|
|
231
|
-
AgentID: number | null;
|
|
232
|
-
AgentName: string | null;
|
|
233
|
-
AgentState: string | null;
|
|
234
|
-
Compensation_MTD: Partial<number>;
|
|
235
|
-
Compensation_PrevYTD: Partial<number>;
|
|
236
|
-
Compensation_YTD: Partial<number>;
|
|
237
|
-
Expr1: number | null;
|
|
238
|
-
GrossIncome_MTD: Partial<number>;
|
|
239
|
-
GrossIncome_PrevYTD: Partial<number>;
|
|
240
|
-
GrossIncome_YTD: Partial<number>;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
11
|
export interface Account_100 {
|
|
244
12
|
AccountNumber: string | null;
|
|
245
13
|
AccountPayoff: Partial<number> | null;
|
|
@@ -332,6 +100,49 @@ export interface Account_100 {
|
|
|
332
100
|
TotalDownPayment: Partial<number> | null;
|
|
333
101
|
}
|
|
334
102
|
|
|
103
|
+
export interface All_Payments {
|
|
104
|
+
AccountID: number | null;
|
|
105
|
+
AccountNumber: string | null;
|
|
106
|
+
ActivityDate: string | null;
|
|
107
|
+
AutoID: number;
|
|
108
|
+
CancelFee: Partial<number> | null;
|
|
109
|
+
CurStatusCodeText: string | null;
|
|
110
|
+
DepartmentCode: string | null;
|
|
111
|
+
Description: string | null;
|
|
112
|
+
EnteredByUserName: string | null;
|
|
113
|
+
LateCharge: Partial<number> | null;
|
|
114
|
+
NSFFee: Partial<number> | null;
|
|
115
|
+
Other: Partial<number> | null;
|
|
116
|
+
PaymentNumber: number | null;
|
|
117
|
+
PrincipalAndInterest: Partial<number> | null;
|
|
118
|
+
ReceiptMethod: string | null;
|
|
119
|
+
SetupFee: Partial<number> | null;
|
|
120
|
+
Territory: string | null;
|
|
121
|
+
TotalAmount: Partial<number> | null;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export interface All_Payments_with_NSF {
|
|
125
|
+
AccountID: number | null;
|
|
126
|
+
AccountNumber: string | null;
|
|
127
|
+
ActivityDate: string | null;
|
|
128
|
+
AutoID: number;
|
|
129
|
+
CancelFee: Partial<number> | null;
|
|
130
|
+
CurStatusCodeText: string | null;
|
|
131
|
+
DepartmentCode: string | null;
|
|
132
|
+
Description: string | null;
|
|
133
|
+
EnteredByUserName: string | null;
|
|
134
|
+
LateCharge: Partial<number> | null;
|
|
135
|
+
NSF_Count: number;
|
|
136
|
+
NSFFee: Partial<number> | null;
|
|
137
|
+
Other: Partial<number> | null;
|
|
138
|
+
PaymentNumber: number | null;
|
|
139
|
+
PrincipalAndInterest: Partial<number> | null;
|
|
140
|
+
ReceiptMethod: string | null;
|
|
141
|
+
SetupFee: Partial<number> | null;
|
|
142
|
+
Territory: string | null;
|
|
143
|
+
TotalAmount: Partial<number> | null;
|
|
144
|
+
}
|
|
145
|
+
|
|
335
146
|
export interface GL_Agent_Compensation {
|
|
336
147
|
AccountID: number | null;
|
|
337
148
|
Activity: string | null;
|
|
@@ -475,6 +286,62 @@ export interface GL_Base {
|
|
|
475
286
|
UserName: string | null;
|
|
476
287
|
}
|
|
477
288
|
|
|
289
|
+
export interface GL_Base_LBD {
|
|
290
|
+
AccountID: number | null;
|
|
291
|
+
AccountNumber: string | null;
|
|
292
|
+
Activity: string | null;
|
|
293
|
+
ActivityDate: string | null;
|
|
294
|
+
Amount: Partial<number> | null;
|
|
295
|
+
Description: string | null;
|
|
296
|
+
EntryType: string | null;
|
|
297
|
+
GLAccountName: string | null;
|
|
298
|
+
GLAccountNumber: string | null;
|
|
299
|
+
GLAccountTypeID: number | null;
|
|
300
|
+
GLEntryID: number;
|
|
301
|
+
ObjectDetailTypeID: number | null;
|
|
302
|
+
ObjectType: string | null;
|
|
303
|
+
ObjectTypeID: number | null;
|
|
304
|
+
PolicyID: number | null;
|
|
305
|
+
UserID: number | null;
|
|
306
|
+
UserName: string | null;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
export interface GL_Base_LBD_FISERV_Formatted_Base {
|
|
310
|
+
ActivityDate: string | null;
|
|
311
|
+
Amount: Partial<number> | null;
|
|
312
|
+
Check_Number: string | null;
|
|
313
|
+
Entry_Description: string | null;
|
|
314
|
+
Filler: string | null;
|
|
315
|
+
GL_Account: string | null;
|
|
316
|
+
Max_Number_of_Times: string | null;
|
|
317
|
+
Memo_Post_Flag: string | null;
|
|
318
|
+
Recurring_Frequency: string | null;
|
|
319
|
+
Reversal_Flag: string | null;
|
|
320
|
+
Trace_Number: string | null;
|
|
321
|
+
Tran_Code: string | null;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
export interface GLBaseLBDFISERVFormattedBaseBalanceCheck {
|
|
325
|
+
_400: Partial<number> | null;
|
|
326
|
+
_500: Partial<number> | null;
|
|
327
|
+
GL_Account: string | null;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
export interface GLBaseLBDFISERVFormattedBaseFinal {
|
|
331
|
+
ActivityDate: string | null;
|
|
332
|
+
Amount: string | null;
|
|
333
|
+
Check_Number: string | null;
|
|
334
|
+
Entry_Description: string | null;
|
|
335
|
+
Filler: string | null;
|
|
336
|
+
GL_Account: string | null;
|
|
337
|
+
Max_Number_of_Times: string | null;
|
|
338
|
+
Memo_Post_Flag: string | null;
|
|
339
|
+
Recurring_Frequency: string | null;
|
|
340
|
+
Reversal_Flag: string | null;
|
|
341
|
+
Trace_Number: string | null;
|
|
342
|
+
Tran_Code: string | null;
|
|
343
|
+
}
|
|
344
|
+
|
|
478
345
|
export interface GL_FeeIncome {
|
|
479
346
|
AccountID: number | null;
|
|
480
347
|
Activity: string | null;
|
|
@@ -685,45 +552,6 @@ export interface Territory_List {
|
|
|
685
552
|
TerritoryFullName: string | null;
|
|
686
553
|
}
|
|
687
554
|
|
|
688
|
-
export interface AccountPolicyBalanceEqualException {
|
|
689
|
-
accountID: number;
|
|
690
|
-
Diff: Partial<number> | null;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
export interface BalanceVer_Income_MTD {
|
|
694
|
-
FeeIncome: Partial<number> | null;
|
|
695
|
-
Gross_Income: Partial<number> | null;
|
|
696
|
-
InterestIncome: Partial<number> | null;
|
|
697
|
-
TerritoryFullName: string | null;
|
|
698
|
-
Writeoffs: Partial<number> | null;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
export interface BalanceVer_Income_YTD {
|
|
702
|
-
FeeIncome: Partial<number> | null;
|
|
703
|
-
Gross_Income: Partial<number> | null;
|
|
704
|
-
InterestIncome: Partial<number> | null;
|
|
705
|
-
TerritoryFullName: string | null;
|
|
706
|
-
Writeoffs: Partial<number> | null;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
export interface LB_Summary_byTerr_byAccount {
|
|
710
|
-
Accounts: number | null;
|
|
711
|
-
BalanceDue: Partial<number> | null;
|
|
712
|
-
Territory: string | null;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
export interface LB_Summary_byTerr_byAccount_AFGT15k {
|
|
716
|
-
Accounts: number | null;
|
|
717
|
-
BalanceDue: Partial<number> | null;
|
|
718
|
-
Territory: string | null;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
export interface LB_Summary_byTerr_byAccount_AFLT15k {
|
|
722
|
-
Accounts: number | null;
|
|
723
|
-
BalanceDue: Partial<number> | null;
|
|
724
|
-
Territory: string | null;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
555
|
export interface Account {
|
|
728
556
|
AccountNumber: string | null;
|
|
729
557
|
AccountPayoff: Partial<number> | null;
|
|
@@ -1042,6 +870,50 @@ export interface Policy {
|
|
|
1042
870
|
UnearnedPremiumReceived: Partial<number> | null;
|
|
1043
871
|
}
|
|
1044
872
|
|
|
873
|
+
export interface AvgCancelationRate {
|
|
874
|
+
avgCancelationRateID: number;
|
|
875
|
+
created: string;
|
|
876
|
+
createdByID: number;
|
|
877
|
+
rate: Partial<number>;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
export interface InsuranceCompanyManual {
|
|
881
|
+
Address1: string | null;
|
|
882
|
+
Address2: string | null;
|
|
883
|
+
AggregateOutstandingsLimit: string | null;
|
|
884
|
+
AMBest: string | null;
|
|
885
|
+
AMBestGroupNumber: string | null;
|
|
886
|
+
AMBestNumber: string | null;
|
|
887
|
+
AMBestRatingDate: string | null;
|
|
888
|
+
AvailableBalance: Partial<number> | null;
|
|
889
|
+
BadAddress: string | null;
|
|
890
|
+
City: string | null;
|
|
891
|
+
CompanyType: string | null;
|
|
892
|
+
Contact: string | null;
|
|
893
|
+
Country: string | null;
|
|
894
|
+
DateCreated: string | null;
|
|
895
|
+
Email: string | null;
|
|
896
|
+
Fax: string | null;
|
|
897
|
+
GAOwnerName: string | null;
|
|
898
|
+
HomeOfficeName: string | null;
|
|
899
|
+
InternalID: number;
|
|
900
|
+
NAICNumber: string | null;
|
|
901
|
+
Name: string | null;
|
|
902
|
+
NextReviewDate: string | null;
|
|
903
|
+
OutstandingBalance: Partial<number> | null;
|
|
904
|
+
Phone: string | null;
|
|
905
|
+
RemittanceSchedule: string | null;
|
|
906
|
+
SalesExecName: string | null;
|
|
907
|
+
SearchCode: string | null;
|
|
908
|
+
SiteID: number | null;
|
|
909
|
+
State: string | null;
|
|
910
|
+
StatusDetailName: string | null;
|
|
911
|
+
StatusName: string | null;
|
|
912
|
+
Suspended: number | null;
|
|
913
|
+
TaxID: string | null;
|
|
914
|
+
Zip: string | null;
|
|
915
|
+
}
|
|
916
|
+
|
|
1045
917
|
export interface TannerMailMergeAccList {
|
|
1046
918
|
AccountNum: string | null;
|
|
1047
919
|
}
|
|
@@ -1052,124 +924,6 @@ export interface Workday {
|
|
|
1052
924
|
dteWeekday: string | null;
|
|
1053
925
|
}
|
|
1054
926
|
|
|
1055
|
-
export interface Returned_Mail_Tracking {
|
|
1056
|
-
AccountID: number;
|
|
1057
|
-
Date: string | null;
|
|
1058
|
-
LastModified: string | null;
|
|
1059
|
-
LastModifiedby: string | null;
|
|
1060
|
-
Memo: string | null;
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
export interface RRG_Insurance_Companies {
|
|
1064
|
-
AMBestNumber: string | null;
|
|
1065
|
-
Entity_Group_Name: string | null;
|
|
1066
|
-
Flow_Through_Limit: Partial<number> | null;
|
|
1067
|
-
Last_Review_Date: string | null;
|
|
1068
|
-
LastModified: string | null;
|
|
1069
|
-
LastModifiedby: string | null;
|
|
1070
|
-
Motivation: string | null;
|
|
1071
|
-
Review_Frequency__Months_: number | null;
|
|
1072
|
-
}
|
|
1073
|
-
|
|
1074
|
-
export interface All_Payments {
|
|
1075
|
-
AccountID: number | null;
|
|
1076
|
-
AccountNumber: string | null;
|
|
1077
|
-
ActivityDate: string | null;
|
|
1078
|
-
AutoID: number;
|
|
1079
|
-
CancelFee: Partial<number> | null;
|
|
1080
|
-
CurStatusCodeText: string | null;
|
|
1081
|
-
DepartmentCode: string | null;
|
|
1082
|
-
Description: string | null;
|
|
1083
|
-
EnteredByUserName: string | null;
|
|
1084
|
-
LateCharge: Partial<number> | null;
|
|
1085
|
-
NSFFee: Partial<number> | null;
|
|
1086
|
-
Other: Partial<number> | null;
|
|
1087
|
-
PaymentNumber: number | null;
|
|
1088
|
-
PrincipalAndInterest: Partial<number> | null;
|
|
1089
|
-
ReceiptMethod: string | null;
|
|
1090
|
-
SetupFee: Partial<number> | null;
|
|
1091
|
-
Territory: string | null;
|
|
1092
|
-
TotalAmount: Partial<number> | null;
|
|
1093
|
-
}
|
|
1094
|
-
|
|
1095
|
-
export interface All_Payments_with_NSF {
|
|
1096
|
-
AccountID: number | null;
|
|
1097
|
-
AccountNumber: string | null;
|
|
1098
|
-
ActivityDate: string | null;
|
|
1099
|
-
AutoID: number;
|
|
1100
|
-
CancelFee: Partial<number> | null;
|
|
1101
|
-
CurStatusCodeText: string | null;
|
|
1102
|
-
DepartmentCode: string | null;
|
|
1103
|
-
Description: string | null;
|
|
1104
|
-
EnteredByUserName: string | null;
|
|
1105
|
-
LateCharge: Partial<number> | null;
|
|
1106
|
-
NSF_Count: number;
|
|
1107
|
-
NSFFee: Partial<number> | null;
|
|
1108
|
-
Other: Partial<number> | null;
|
|
1109
|
-
PaymentNumber: number | null;
|
|
1110
|
-
PrincipalAndInterest: Partial<number> | null;
|
|
1111
|
-
ReceiptMethod: string | null;
|
|
1112
|
-
SetupFee: Partial<number> | null;
|
|
1113
|
-
Territory: string | null;
|
|
1114
|
-
TotalAmount: Partial<number> | null;
|
|
1115
|
-
}
|
|
1116
|
-
|
|
1117
|
-
export interface GL_Base_LBD {
|
|
1118
|
-
AccountID: number | null;
|
|
1119
|
-
AccountNumber: string | null;
|
|
1120
|
-
Activity: string | null;
|
|
1121
|
-
ActivityDate: string | null;
|
|
1122
|
-
Amount: Partial<number> | null;
|
|
1123
|
-
Description: string | null;
|
|
1124
|
-
EntryType: string | null;
|
|
1125
|
-
GLAccountName: string | null;
|
|
1126
|
-
GLAccountNumber: string | null;
|
|
1127
|
-
GLAccountTypeID: number | null;
|
|
1128
|
-
GLEntryID: number;
|
|
1129
|
-
ObjectDetailTypeID: number | null;
|
|
1130
|
-
ObjectType: string | null;
|
|
1131
|
-
ObjectTypeID: number | null;
|
|
1132
|
-
PolicyID: number | null;
|
|
1133
|
-
UserID: number | null;
|
|
1134
|
-
UserName: string | null;
|
|
1135
|
-
}
|
|
1136
|
-
|
|
1137
|
-
export interface GL_Base_LBD_FISERV_Formatted_Base {
|
|
1138
|
-
ActivityDate: string | null;
|
|
1139
|
-
Amount: Partial<number> | null;
|
|
1140
|
-
Check_Number: string | null;
|
|
1141
|
-
Entry_Description: string | null;
|
|
1142
|
-
Filler: string | null;
|
|
1143
|
-
GL_Account: string | null;
|
|
1144
|
-
Max_Number_of_Times: string | null;
|
|
1145
|
-
Memo_Post_Flag: string | null;
|
|
1146
|
-
Recurring_Frequency: string | null;
|
|
1147
|
-
Reversal_Flag: string | null;
|
|
1148
|
-
Trace_Number: string | null;
|
|
1149
|
-
Tran_Code: string | null;
|
|
1150
|
-
}
|
|
1151
|
-
|
|
1152
|
-
export interface GLBaseLBDFISERVFormattedBaseBalanceCheck {
|
|
1153
|
-
_400: Partial<number> | null;
|
|
1154
|
-
_500: Partial<number> | null;
|
|
1155
|
-
GL_Account: string | null;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1158
|
-
export interface GLBaseLBDFISERVFormattedBaseFinal {
|
|
1159
|
-
ActivityDate: string | null;
|
|
1160
|
-
Amount: string | null;
|
|
1161
|
-
Check_Number: string | null;
|
|
1162
|
-
Entry_Description: string | null;
|
|
1163
|
-
Filler: string | null;
|
|
1164
|
-
GL_Account: string | null;
|
|
1165
|
-
Max_Number_of_Times: string | null;
|
|
1166
|
-
Memo_Post_Flag: string | null;
|
|
1167
|
-
Recurring_Frequency: string | null;
|
|
1168
|
-
Reversal_Flag: string | null;
|
|
1169
|
-
Trace_Number: string | null;
|
|
1170
|
-
Tran_Code: string | null;
|
|
1171
|
-
}
|
|
1172
|
-
|
|
1173
927
|
export interface AFSummarybyTerrLBD {
|
|
1174
928
|
Accounts: number | null;
|
|
1175
929
|
AmountFinanced: Partial<number> | null;
|
|
@@ -1449,15 +1203,15 @@ export interface _30_day_Notice_to_Agency {
|
|
|
1449
1203
|
NoticeDate: string | null;
|
|
1450
1204
|
}
|
|
1451
1205
|
|
|
1452
|
-
export interface
|
|
1206
|
+
export interface NoticeToInsured30Day {
|
|
1453
1207
|
AccountNumber: string | null;
|
|
1454
1208
|
Addr1: string | null;
|
|
1455
1209
|
BalanceDue: Partial<number> | null;
|
|
1456
1210
|
City1: string | null;
|
|
1457
1211
|
CurStatusCodeText: string | null;
|
|
1458
1212
|
DBAName: string | null;
|
|
1213
|
+
InsuredName: string | null;
|
|
1459
1214
|
Name: string | null;
|
|
1460
|
-
Name1: string | null;
|
|
1461
1215
|
NoticeDate: string | null;
|
|
1462
1216
|
PolicyNumbers: string | null;
|
|
1463
1217
|
}
|
|
@@ -1480,12 +1234,12 @@ export interface CreditUnderwritingException {
|
|
|
1480
1234
|
PUCFilings: string | null;
|
|
1481
1235
|
}
|
|
1482
1236
|
|
|
1483
|
-
export interface
|
|
1484
|
-
|
|
1237
|
+
export interface CreditUnderwritingExceptionsAccounts {
|
|
1238
|
+
AccountID: number;
|
|
1485
1239
|
}
|
|
1486
1240
|
|
|
1487
|
-
export interface
|
|
1488
|
-
|
|
1241
|
+
export interface CreditUnderwritingExceptionsAllPolicies {
|
|
1242
|
+
AccountID: number;
|
|
1489
1243
|
Balance: Partial<number> | null;
|
|
1490
1244
|
PolicyNumber: string | null;
|
|
1491
1245
|
}
|
|
@@ -1591,3 +1345,47 @@ export interface RRGInsuranceCompaniesRPT {
|
|
|
1591
1345
|
ReviewFrequencyMonths: number | null;
|
|
1592
1346
|
}
|
|
1593
1347
|
|
|
1348
|
+
export interface Credit_Risk_Policy_Exceptions {
|
|
1349
|
+
AccountID: string | null;
|
|
1350
|
+
Class: string | null;
|
|
1351
|
+
ExceptionDate: string;
|
|
1352
|
+
Exceptions: string | null;
|
|
1353
|
+
LastModified: string;
|
|
1354
|
+
LastModifiedBy: string | null;
|
|
1355
|
+
MaxExposure: Partial<number> | null;
|
|
1356
|
+
NotesCollectionActivity: string | null;
|
|
1357
|
+
ReportID: number;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
export interface ALLL_commitment_data {
|
|
1361
|
+
AccountNumber: string | null;
|
|
1362
|
+
AgencyCommitment: Partial<number> | null;
|
|
1363
|
+
CarrierGACommitment: Partial<number> | null;
|
|
1364
|
+
Commitment: string | null;
|
|
1365
|
+
CommitmentFrom: string | null;
|
|
1366
|
+
Date: string | null;
|
|
1367
|
+
ID: number;
|
|
1368
|
+
LastModified: string | null;
|
|
1369
|
+
LastModifiedBy: string | null;
|
|
1370
|
+
UnderAudit: string | null;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
export interface Returned_Mail_Tracking {
|
|
1374
|
+
AccountID: number;
|
|
1375
|
+
Date: string | null;
|
|
1376
|
+
LastModified: string | null;
|
|
1377
|
+
LastModifiedby: string | null;
|
|
1378
|
+
Memo: string | null;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
export interface RRG_Insurance_Companies {
|
|
1382
|
+
AMBestNumber: string | null;
|
|
1383
|
+
Entity_Group_Name: string | null;
|
|
1384
|
+
Flow_Through_Limit: Partial<number> | null;
|
|
1385
|
+
Last_Review_Date: string | null;
|
|
1386
|
+
LastModified: string | null;
|
|
1387
|
+
LastModifiedby: string | null;
|
|
1388
|
+
Motivation: string | null;
|
|
1389
|
+
Review_Frequency__Months_: number | null;
|
|
1390
|
+
}
|
|
1391
|
+
|