@leavittsoftware/lg-core-typescript 5.36.0 → 5.38.0
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/api3.leavitt.com.ts +7 -7
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -38,14 +38,14 @@ export interface DomoBookedData {
|
|
|
38
38
|
|
|
39
39
|
export interface LeaderBoardDto {
|
|
40
40
|
CompanyId: number | null;
|
|
41
|
-
EndDate: string
|
|
41
|
+
EndDate: string;
|
|
42
42
|
PersonIds: Array<number>;
|
|
43
|
-
StartDate: string
|
|
43
|
+
StartDate: string;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
export interface MyRankDto {
|
|
47
|
+
Amount: number | null;
|
|
47
48
|
Rank: number | null;
|
|
48
|
-
Written: number | null;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
export interface VitalActivityDto {
|
|
@@ -54,14 +54,13 @@ export interface VitalActivityDto {
|
|
|
54
54
|
CompanyId: number | null;
|
|
55
55
|
CompanyName: string;
|
|
56
56
|
ExpectedTotalBook: number | null;
|
|
57
|
-
|
|
57
|
+
FullName: string | null;
|
|
58
58
|
HireDate: string | null;
|
|
59
59
|
IsSubsidized: boolean;
|
|
60
|
-
LastName: string;
|
|
61
60
|
LicensedDate: string | null;
|
|
62
61
|
MonthlyAppointmentsAverage: number | null;
|
|
63
|
-
MonthlyApptGoal: number;
|
|
64
|
-
NewApptGoal: number;
|
|
62
|
+
MonthlyApptGoal: number | null;
|
|
63
|
+
NewApptGoal: number | null;
|
|
65
64
|
PersonId: number;
|
|
66
65
|
TalentSearch: boolean;
|
|
67
66
|
TotalBook: number | null;
|
|
@@ -158,6 +157,7 @@ export interface SlideUpsertDto {
|
|
|
158
157
|
Id: number | null;
|
|
159
158
|
Image: File | null;
|
|
160
159
|
MakeFullscreen: boolean | null;
|
|
160
|
+
MinAmount: number | null;
|
|
161
161
|
Name: string | null;
|
|
162
162
|
Path: string | null;
|
|
163
163
|
QrCodeLabel: string | null;
|