@leavittsoftware/lg-core-typescript 5.1405.0 → 5.1407.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 +45 -1
- 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":"AAugDA,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
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// ----------------------
|
|
6
6
|
import { UnionConcat } from './enum-helpers'
|
|
7
7
|
import { IDatabaseAttachment } from './lg.net.system'
|
|
8
|
-
import { VehicleFuelTypeString, VehicleTransmissionTypeString, VehicleClassString, VehicleUnavailableReasonString, Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, JobRole, EmployeeChangeTransaction, Person, DistanceUnitTypeString, ApplicationToApplicationTag, EmailTemplateRecipient, EmailTemplateLog, EmploymentTypeString } from './lg.net.core'
|
|
8
|
+
import { VehicleFuelTypeString, VehicleTransmissionTypeString, VehicleClassString, VehicleReservationStatusString, VehicleUnavailableReasonString, Company, LogoHeightTypeString, QuotingPromptTypeString, PersonalPropertyLineOfBusinessString, PersonalPropertyQuoteTypeString, JobRole, EmployeeChangeTransaction, Person, DistanceUnitTypeString, ApplicationToApplicationTag, EmailTemplateRecipient, EmailTemplateLog, EmploymentTypeString } from './lg.net.core'
|
|
9
9
|
|
|
10
10
|
export interface ICompanySelect {
|
|
11
11
|
Id: number;
|
|
@@ -77,6 +77,11 @@ export interface SendChangeRequestEmailDto {
|
|
|
77
77
|
Note: string;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
+
export interface UpdateReservationStatusDto {
|
|
81
|
+
Note?: string | null ;
|
|
82
|
+
Status: VehicleReservationStatusString;
|
|
83
|
+
}
|
|
84
|
+
|
|
80
85
|
export interface UpsertCheckoutVehicleDto {
|
|
81
86
|
Description?: string | null ;
|
|
82
87
|
FuelLevel?: number | null ;
|
|
@@ -143,9 +148,20 @@ export interface VehicleCalendarDto {
|
|
|
143
148
|
Plate: string;
|
|
144
149
|
TrackingNumber?: string | null ;
|
|
145
150
|
Usages: Array<Partial<VehicleCalendarUsageDto>>;
|
|
151
|
+
VehicleClass: VehicleClassString;
|
|
152
|
+
VehicleName: string;
|
|
146
153
|
Year: number;
|
|
147
154
|
}
|
|
148
155
|
|
|
156
|
+
export interface VehicleCheckoutDashboardStatsDto {
|
|
157
|
+
AvailableNow: number;
|
|
158
|
+
CheckedOut: number;
|
|
159
|
+
OverDue: number;
|
|
160
|
+
PendingApproval: number;
|
|
161
|
+
TotalVehicles: number;
|
|
162
|
+
Unavailable: number;
|
|
163
|
+
}
|
|
164
|
+
|
|
149
165
|
export interface VehicleCheckoutGetVehicleDto {
|
|
150
166
|
CarUsage?: Partial<GetCheckoutVehicleUsageDto> | null ;
|
|
151
167
|
Description?: string | null ;
|
|
@@ -166,6 +182,34 @@ export interface VehicleCheckoutGetVehicleDto {
|
|
|
166
182
|
Year: number;
|
|
167
183
|
}
|
|
168
184
|
|
|
185
|
+
export interface VehicleCheckoutTodaysCheckoutsDto {
|
|
186
|
+
FullName?: string | null ;
|
|
187
|
+
LicensePlate: string;
|
|
188
|
+
Make: string;
|
|
189
|
+
Model: string;
|
|
190
|
+
PersonId: number;
|
|
191
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
192
|
+
ReservationId: number;
|
|
193
|
+
ReservationStartDate: string;
|
|
194
|
+
TrackingNumber?: string | null ;
|
|
195
|
+
VehicleId: number;
|
|
196
|
+
Year: number;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export interface VehicleCheckoutTodaysReturnsDto {
|
|
200
|
+
FullName?: string | null ;
|
|
201
|
+
LicensePlate: string;
|
|
202
|
+
Make: string;
|
|
203
|
+
Model: string;
|
|
204
|
+
PersonId: number;
|
|
205
|
+
ProfilePictureCdnFileName?: string | null ;
|
|
206
|
+
ReservationEndDate: string;
|
|
207
|
+
ReservationId: number;
|
|
208
|
+
TrackingNumber?: string | null ;
|
|
209
|
+
VehicleId: number;
|
|
210
|
+
Year: number;
|
|
211
|
+
}
|
|
212
|
+
|
|
169
213
|
export interface UpsertBasketDto {
|
|
170
214
|
FruitIds: Array<number | null>;
|
|
171
215
|
Id?: number | null ;
|