@alba-cars/common-modules 2.7.7 → 2.8.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/dist/core/network/endpoint-config.d.ts +9 -0
- package/dist/features/bank-valuation-request/data/dto/BankValuationRequestDTO.d.ts +1 -0
- package/dist/features/models/BankValuationRequest.d.ts +1 -0
- package/dist/features/models/BankValuationResult.d.ts +2 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -58,7 +58,16 @@ type FinanceEligibilityRequestEndpoints = BaseEndpoint & {
|
|
|
58
58
|
updateStatus: EndpointFunction;
|
|
59
59
|
};
|
|
60
60
|
type BankValuationRequestEndpoints = BaseEndpoint & {
|
|
61
|
+
approveValuation: EndpointFunction;
|
|
62
|
+
rejectValuation: EndpointFunction;
|
|
63
|
+
overridePayment: EndpointFunction;
|
|
64
|
+
updateStatus: EndpointFunction;
|
|
65
|
+
previewCertificatePdf: EndpointFunction;
|
|
66
|
+
reissueCertificate: EndpointFunction;
|
|
67
|
+
getCertificateEditableData: EndpointFunction;
|
|
61
68
|
estimate: string;
|
|
69
|
+
rangeEstimate: string;
|
|
70
|
+
getStats: string;
|
|
62
71
|
notifyAboutExistingLead: string;
|
|
63
72
|
};
|
|
64
73
|
type ColorEndpoints = BaseEndpoint & {
|
|
@@ -27,6 +27,7 @@ export declare class BankValuationRequest {
|
|
|
27
27
|
comments?: string;
|
|
28
28
|
status: "pending" | "paid" | "payment_declined" | "rejected" | "approved";
|
|
29
29
|
images?: string[];
|
|
30
|
+
extraIssuedCertificates?: string[];
|
|
30
31
|
createdAt?: Date;
|
|
31
32
|
updatedAt?: Date;
|
|
32
33
|
sessionId?: string | null;
|
|
@@ -4,6 +4,8 @@ export declare const BankValuationAction: {
|
|
|
4
4
|
readonly APPROVAL: "approval";
|
|
5
5
|
readonly REJECTION: "rejection";
|
|
6
6
|
readonly ISSUED_FOR_FREE: "issued_for_free";
|
|
7
|
+
readonly REISSUED_CERTIFICATE: "reissued_certificate";
|
|
8
|
+
readonly EDITED: "edited";
|
|
7
9
|
};
|
|
8
10
|
export type BankValuationActionType = (typeof BankValuationAction)[keyof typeof BankValuationAction];
|
|
9
11
|
export declare class BankValuationResult {
|