@leavittsoftware/lg-core-typescript 5.1403.0 → 5.1405.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/api4.leavitt.com.js.map +1 -1
- package/api4.leavitt.com.ts +15 -0
- package/package.json +1 -1
package/api4.leavitt.com.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"api4.leavitt.com.js","sourceRoot":"","sources":["api4.leavitt.com.ts"],"names":[],"mappings":"AA29CA,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAChC,2FAAkB,CAAA;IAClB,qFAAe,CAAA;AACnB,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,QAGnC;AAID,MAAM,CAAN,IAAY,qBAOX;AAPD,WAAY,qBAAqB;IAC7B,2EAAa,CAAA;IACb,6EAAc,CAAA;IACd,uEAAW,CAAA;IACX,+EAAe,CAAA;IACf,uEAAW,CAAA;IACX,yEAAY,CAAA;AAChB,CAAC,EAPW,qBAAqB,KAArB,qBAAqB,QAOhC;AAID,MAAM,CAAN,IAAY,qBAKX;AALD,WAAY,qBAAqB;IAC7B,yEAAY,CAAA;IACZ,6EAAc,CAAA;IACd,+EAAe,CAAA;IACf,uEAAW,CAAA;AACf,CAAC,EALW,qBAAqB,KAArB,qBAAqB,QAKhC;AAID,MAAM,CAAN,IAAY,UAOX;AAPD,WAAY,UAAU;IAClB,2CAAQ,CAAA;IACR,uDAAc,CAAA;IACd,mEAAoB,CAAA;IACpB,mDAAY,CAAA;IACZ,6CAAS,CAAA;IACT,yCAAO,CAAA;AACX,CAAC,EAPW,UAAU,KAAV,UAAU,QAOrB;AAID,MAAM,CAAN,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,2DAAO,CAAA;IACP,yDAAM,CAAA;AACV,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,QAG9B"}
|
package/api4.leavitt.com.ts
CHANGED
|
@@ -112,6 +112,15 @@ export interface UpsertVehicleReservationDto {
|
|
|
112
112
|
VehicleId: number;
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
+
export interface UpsertVehicleUnavailabilityDto {
|
|
116
|
+
EndDate?: string | null ;
|
|
117
|
+
Id?: number | null ;
|
|
118
|
+
Notes?: string | null ;
|
|
119
|
+
StartDate: string;
|
|
120
|
+
UnavailableReason: VehicleUnavailableReasonString;
|
|
121
|
+
VehicleId: number;
|
|
122
|
+
}
|
|
123
|
+
|
|
115
124
|
export interface VehicleCalendarUsageDto {
|
|
116
125
|
EndDate?: string | null ;
|
|
117
126
|
Overdue?: boolean;
|
|
@@ -980,6 +989,10 @@ export interface FitnessSiteStatusDto {
|
|
|
980
989
|
CurrentWeight: number;
|
|
981
990
|
FitnessChallenges: Array<Partial<FitnessSiteStatusChallengeDto>>;
|
|
982
991
|
GoalMinutes: number;
|
|
992
|
+
InvitedByCompanyName?: string | null ;
|
|
993
|
+
InvitedByFullName?: string | null ;
|
|
994
|
+
InvitedByProfilePictureCdnFileName?: string | null ;
|
|
995
|
+
InvitedByRelationship?: string | null ;
|
|
983
996
|
IsGoogleHealthSyncEnabled?: boolean;
|
|
984
997
|
MinutesThisMonth: number;
|
|
985
998
|
PreferredDistanceUnitType?: DistanceUnitTypeString | null ;
|
|
@@ -1030,6 +1043,7 @@ export interface IndividualChallengeLeaderboardDto extends IPersonDetails {
|
|
|
1030
1043
|
EarnedDistance: number;
|
|
1031
1044
|
Milestones: Array<Partial<IndividualChallengeLeaderboardMilestoneDto>>;
|
|
1032
1045
|
Rank?: number | null ;
|
|
1046
|
+
Relationship?: string | null ;
|
|
1033
1047
|
}
|
|
1034
1048
|
|
|
1035
1049
|
export interface IndividualChallengeLeaderboardMilestoneDto {
|
|
@@ -1070,6 +1084,7 @@ export interface TeamChallengeLeaderboardDto {
|
|
|
1070
1084
|
export interface Top5ChallengeParticipantsDto extends IPersonDetails {
|
|
1071
1085
|
EarnedDistance: number;
|
|
1072
1086
|
Rank: number;
|
|
1087
|
+
Relationship?: string | null ;
|
|
1073
1088
|
}
|
|
1074
1089
|
|
|
1075
1090
|
export interface UpdateWeightDto {
|