@leavittsoftware/lg-core-typescript 2.0.287 → 2.0.291
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 +8 -8
- package/lg.core.repository.ts +39 -25
- package/package.json +1 -1
package/lg.apfc.ts
CHANGED
|
@@ -1149,7 +1149,7 @@ export interface GL_Base_LBD_FISERV_Formatted_Base {
|
|
|
1149
1149
|
Tran_Code: string | null;
|
|
1150
1150
|
}
|
|
1151
1151
|
|
|
1152
|
-
export interface
|
|
1152
|
+
export interface GLBaseLBDFISERVFormattedBaseBalanceCheck {
|
|
1153
1153
|
_400: Partial<number> | null;
|
|
1154
1154
|
_500: Partial<number> | null;
|
|
1155
1155
|
GL_Account: string | null;
|
|
@@ -1170,6 +1170,12 @@ export interface GLBaseLBDFISERVFormattedBaseFinal {
|
|
|
1170
1170
|
Tran_Code: string | null;
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
1173
|
+
export interface AFSummarybyTerrLBD {
|
|
1174
|
+
Accounts: number | null;
|
|
1175
|
+
AmountFinanced: Partial<number> | null;
|
|
1176
|
+
Territory: string | null;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1173
1179
|
export interface ZionsTrialBalance {
|
|
1174
1180
|
DateLastPaid: string | null;
|
|
1175
1181
|
DaysPastDue: number | null;
|
|
@@ -1192,12 +1198,6 @@ export interface AFSummaryByTerritoryCurrentMTD {
|
|
|
1192
1198
|
Territory: string | null;
|
|
1193
1199
|
}
|
|
1194
1200
|
|
|
1195
|
-
export interface AF_Summary_byTerr_LBD {
|
|
1196
|
-
Accounts: number | null;
|
|
1197
|
-
AmountFinanced: Partial<number> | null;
|
|
1198
|
-
Territory: string | null;
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
1201
|
export interface AuditReport {
|
|
1202
1202
|
AccountNumber: string | null;
|
|
1203
1203
|
Address1: string | null;
|
|
@@ -1462,7 +1462,7 @@ export interface _30_day_Notice_to_Insured {
|
|
|
1462
1462
|
PolicyNumbers: string | null;
|
|
1463
1463
|
}
|
|
1464
1464
|
|
|
1465
|
-
export interface
|
|
1465
|
+
export interface CreditUnderwritingException {
|
|
1466
1466
|
Account_ID: number;
|
|
1467
1467
|
AccountNumber: string | null;
|
|
1468
1468
|
Agent_Name: string | null;
|
package/lg.core.repository.ts
CHANGED
|
@@ -34,31 +34,6 @@ export interface Ams360EmployeesDto {
|
|
|
34
34
|
Representatives: Array<Partial<Ams360EmployeeDto>> | null;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
export interface BookedReportDto {
|
|
38
|
-
AgencyName: string | null;
|
|
39
|
-
BookedAmount: Partial<number> | null;
|
|
40
|
-
FirstName: string | null;
|
|
41
|
-
LastName: string | null;
|
|
42
|
-
PersonId: number;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export interface CommissionReportDto {
|
|
46
|
-
AgencyName: string | null;
|
|
47
|
-
Amount: Partial<number> | null;
|
|
48
|
-
FirstName: string | null;
|
|
49
|
-
LastModifiedDate: string | null;
|
|
50
|
-
LastName: string | null;
|
|
51
|
-
PersonId: number;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export interface WrittenReportDto {
|
|
55
|
-
AgencyName: string | null;
|
|
56
|
-
FirstName: string | null;
|
|
57
|
-
LastName: string | null;
|
|
58
|
-
PersonId: number;
|
|
59
|
-
WrittenAmount: Partial<number> | null;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
37
|
export interface ChartsLeaderDto {
|
|
63
38
|
AgencyName: string | null;
|
|
64
39
|
CompanyIds: Array<number> | null;
|
|
@@ -472,3 +447,42 @@ export interface FruitHolderDto {
|
|
|
472
447
|
PersonId: number;
|
|
473
448
|
}
|
|
474
449
|
|
|
450
|
+
export interface AppointmentReportDto {
|
|
451
|
+
AgencyName: string | null;
|
|
452
|
+
Appointments: number | null;
|
|
453
|
+
PersonId: number;
|
|
454
|
+
ProducerName: string | null;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
export interface PhoneCallReportDto {
|
|
458
|
+
AgencyName: string | null;
|
|
459
|
+
Calls: number | null;
|
|
460
|
+
PersonId: number;
|
|
461
|
+
ProducerName: string | null;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
export interface BookedReportDto {
|
|
465
|
+
AgencyName: string | null;
|
|
466
|
+
BookedAmount: Partial<number> | null;
|
|
467
|
+
FirstName: string | null;
|
|
468
|
+
LastName: string | null;
|
|
469
|
+
PersonId: number;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
export interface CommissionReportDto {
|
|
473
|
+
AgencyName: string | null;
|
|
474
|
+
Amount: Partial<number> | null;
|
|
475
|
+
FirstName: string | null;
|
|
476
|
+
LastModifiedDate: string | null;
|
|
477
|
+
LastName: string | null;
|
|
478
|
+
PersonId: number;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
export interface WrittenReportDto {
|
|
482
|
+
AgencyName: string | null;
|
|
483
|
+
FirstName: string | null;
|
|
484
|
+
LastName: string | null;
|
|
485
|
+
PersonId: number;
|
|
486
|
+
WrittenAmount: Partial<number> | null;
|
|
487
|
+
}
|
|
488
|
+
|