@leavittsoftware/lg-core-typescript 5.1064.0 → 5.1065.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 +4 -4
- package/package.json +1 -1
package/api3.leavitt.com.ts
CHANGED
|
@@ -6864,24 +6864,24 @@ export interface ClientPortalPolicyDetailsEmailDto {
|
|
|
6864
6864
|
export interface ClientPortalPolicyDetailsDriverDto {
|
|
6865
6865
|
DOB?: string | null ;
|
|
6866
6866
|
Gender?: string | null ;
|
|
6867
|
-
Id: string;
|
|
6868
6867
|
Name?: string | null ;
|
|
6868
|
+
UniqueId: string;
|
|
6869
6869
|
}
|
|
6870
6870
|
|
|
6871
6871
|
export interface ClientPortalPolicyDetailsFleetVehicleDto {
|
|
6872
|
-
Id: string;
|
|
6873
6872
|
LeasedCount?: string | null ;
|
|
6874
6873
|
NotOwnedCount?: string | null ;
|
|
6875
6874
|
OwnedCount?: string | null ;
|
|
6875
|
+
UniqueId: string;
|
|
6876
6876
|
VehicleType?: string | null ;
|
|
6877
6877
|
}
|
|
6878
6878
|
|
|
6879
6879
|
export interface ClientPortalPolicyDetailsVehicleDto {
|
|
6880
6880
|
BodyType?: string | null ;
|
|
6881
6881
|
CustomerVehicleNumber?: string | null ;
|
|
6882
|
-
Id: string;
|
|
6883
6882
|
Make?: string | null ;
|
|
6884
6883
|
Model?: string | null ;
|
|
6884
|
+
UniqueId: string;
|
|
6885
6885
|
VIN?: string | null ;
|
|
6886
6886
|
Year?: string | null ;
|
|
6887
6887
|
}
|
|
@@ -6890,9 +6890,9 @@ export interface ClientPortalPolicyDetailsLocationDto {
|
|
|
6890
6890
|
Addr1?: string | null ;
|
|
6891
6891
|
Addr2?: string | null ;
|
|
6892
6892
|
City?: string | null ;
|
|
6893
|
-
Id: string;
|
|
6894
6893
|
Name?: string | null ;
|
|
6895
6894
|
State?: string | null ;
|
|
6895
|
+
UniqueId: string;
|
|
6896
6896
|
ZipCode?: string | null ;
|
|
6897
6897
|
}
|
|
6898
6898
|
|