@leavittsoftware/lg-core-typescript 5.1415.0 → 5.1417.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 +14 -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":"AAykDA,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
|
@@ -113,6 +113,16 @@ export interface UpsertVehicleUnavailabilityDto {
|
|
|
113
113
|
VehicleId: number;
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
+
export interface VehicleAvailabilityDayDto {
|
|
117
|
+
AvailableVehicleCount: number;
|
|
118
|
+
Date: string;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export interface VehicleAvailabilityForReservationPickerDto {
|
|
122
|
+
Days: Array<Partial<VehicleAvailabilityDayDto>>;
|
|
123
|
+
FleetSize: number;
|
|
124
|
+
}
|
|
125
|
+
|
|
116
126
|
export interface VehicleCalendarUsageDto {
|
|
117
127
|
EndDate?: string | null ;
|
|
118
128
|
Overdue?: boolean;
|
|
@@ -173,6 +183,7 @@ export interface VehicleCheckoutTodaysCheckoutsDto {
|
|
|
173
183
|
ProfilePictureCdnFileName?: string | null ;
|
|
174
184
|
ReservationId: number;
|
|
175
185
|
ReservationStartDate: string;
|
|
186
|
+
Status: VehicleReservationStatusString;
|
|
176
187
|
TrackingNumber?: string | null ;
|
|
177
188
|
VehicleId: number;
|
|
178
189
|
Year: number;
|
|
@@ -188,7 +199,10 @@ export interface VehicleCheckoutTodaysReturnsDto {
|
|
|
188
199
|
ProfilePictureCdnFileName?: string | null ;
|
|
189
200
|
ReservationEndDate: string;
|
|
190
201
|
ReservationId: number;
|
|
202
|
+
Status: VehicleReservationStatusString;
|
|
191
203
|
TrackingNumber?: string | null ;
|
|
204
|
+
UserReturned?: boolean;
|
|
205
|
+
UserReturnedDate?: string | null ;
|
|
192
206
|
VehicleId: number;
|
|
193
207
|
Year: number;
|
|
194
208
|
}
|