@nomalism-com/types 0.27.88 → 0.27.90
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,9 @@ export interface IPrintLabelQueryRequest {
|
|
|
111
111
|
quantity: number;
|
|
112
112
|
note?: string;
|
|
113
113
|
}
|
|
114
|
-
type IPrintBulkLabel = IPrintLabelParamsRequest & IPrintLabelQueryRequest;
|
|
115
114
|
export interface IPrintBulkLabelRequest {
|
|
116
|
-
|
|
115
|
+
groupLabel: boolean;
|
|
116
|
+
saved_em_picking_ids: string;
|
|
117
117
|
}
|
|
118
118
|
export interface IPrintLabelQueryWithTokenRequest extends IPrintLabelQueryRequest {
|
|
119
119
|
token: string;
|
|
@@ -228,6 +228,7 @@ export interface IRepository {
|
|
|
228
228
|
findByProductType(params: IFindByProductTypeRequest): Promise<IFindByProductTypeResponse[]>;
|
|
229
229
|
findById(selector: IShared.IFindByIdRequest): Promise<IProductSheetEntity>;
|
|
230
230
|
findPreArtigo(selector: IFindProductSheetByReference): Promise<IProductSheetCabideEntity | null>;
|
|
231
|
+
updatePricesFromPreArtigo(): Promise<void>;
|
|
231
232
|
findByIdWithStock(selector: IShared.IFindByIdRequest): Promise<IProductSheetEntityWithStock>;
|
|
232
233
|
googleSheetsFieldsByRef(selector: IFindByReferenceRequest): Promise<string>;
|
|
233
234
|
findRowPositionOnSheetsWithColumns(params: IFindProductSheetByReference): Promise<string | null>;
|