nextemos 5.9.7 → 5.9.9
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.
|
@@ -135,9 +135,11 @@ export interface IGetBrandListRequest extends IRequestBase {
|
|
|
135
135
|
brandIds?: number[];
|
|
136
136
|
pageSize?: number;
|
|
137
137
|
currentPage?: number;
|
|
138
|
+
includes?: string[];
|
|
138
139
|
}
|
|
139
140
|
export interface IGetBrandRequest extends IRequestBase {
|
|
140
141
|
id: number;
|
|
142
|
+
includes?: string[];
|
|
141
143
|
}
|
|
142
144
|
export interface IGetProductRelationsRequest extends IRequestBase {
|
|
143
145
|
integrationCode?: string;
|
|
@@ -111,6 +111,8 @@ export interface IDoBkmExpressTransactionRequest extends IGetCartRequest {
|
|
|
111
111
|
isApprovedToPreInformationForm: boolean;
|
|
112
112
|
}
|
|
113
113
|
export interface IGetPreInfoFormRequest extends Omit<IGetCartRequest, "flags"> {
|
|
114
|
+
paymentMethodTypeId?: number;
|
|
115
|
+
installmentId?: number;
|
|
114
116
|
}
|
|
115
117
|
export interface IGetSalesAggreementFormRequest extends Omit<IGetCartRequest, "flags"> {
|
|
116
118
|
}
|