@nomalism-com/types 0.32.17 → 0.32.19
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.
|
@@ -111,9 +111,6 @@ export interface IProductSheetCabideEntity {
|
|
|
111
111
|
estimated_delivery: string;
|
|
112
112
|
existing_colors: IProductCabideColors[];
|
|
113
113
|
}
|
|
114
|
-
export interface IProductSheetEntityWithStock extends IProductSheetEntityBase {
|
|
115
|
-
extended_virtual: ProductVirtuals | null;
|
|
116
|
-
}
|
|
117
114
|
export interface IBasicSearchRequest extends IShared.IPaginationRequest {
|
|
118
115
|
search_value: string | null;
|
|
119
116
|
active?: boolean;
|
|
@@ -223,7 +220,7 @@ export interface IRepository {
|
|
|
223
220
|
findById(selector: IShared.IFindByIdRequest): Promise<IProductSheetEntity>;
|
|
224
221
|
findPreArtigo(selector: IFindProductSheetByReference): Promise<IProductSheetCabideEntity | null>;
|
|
225
222
|
updatePricesFromPreArtigo(): Promise<void>;
|
|
226
|
-
findByIdWithStock(selector: IShared.IFindByIdRequest): Promise<
|
|
223
|
+
findByIdWithStock(selector: IShared.IFindByIdRequest): Promise<ProductVirtuals>;
|
|
227
224
|
googleSheetsFieldsByRef(selector: IFindByReferenceRequest): Promise<string>;
|
|
228
225
|
findRowPositionOnSheetsWithColumns(params: IFindProductSheetByReference): Promise<string | null>;
|
|
229
226
|
checkStockByIds(data: ICheckStockByIdsRequest): Promise<ICheckStockByIdsResponse[]>;
|