@alba-cars/common-modules 2.4.3 → 2.4.5

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.
@@ -58,6 +58,7 @@ type FinanceEligibilityRequestEndpoints = BaseEndpoint & {
58
58
  };
59
59
  type BankValuationRequestEndpoints = BaseEndpoint & {
60
60
  estimate: string;
61
+ notifyAboutExistingLead: string;
61
62
  };
62
63
  type ColorEndpoints = BaseEndpoint & {
63
64
  list: string;
@@ -98,7 +99,9 @@ type APIEndpointType = {
98
99
  deposit: DepositEndpoints;
99
100
  agents: BaseEndpoint;
100
101
  showroomVisit: BaseEndpoint;
101
- sellCarRequest: BaseEndpoint;
102
+ sellCarRequest: BaseEndpoint & {
103
+ notifyAboutExistingLead: string;
104
+ };
102
105
  financeEligibilityRequest: FinanceEligibilityRequestEndpoints;
103
106
  vehicleReservations: BaseEndpoint;
104
107
  languages: BaseEndpoint;
@@ -164,6 +164,7 @@ export declare class SellCarRequestResponseDTO {
164
164
  export declare class SellCarFilterDTO {
165
165
  search?: string;
166
166
  leadId?: string;
167
+ additionalDetails?: string;
167
168
  isActive?: boolean;
168
169
  createdAt?: DateFilter;
169
170
  tradeIn?: TradeInOption;