@nomalism-com/types 0.32.22 → 0.32.24
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.
|
@@ -195,7 +195,9 @@ export interface IFindDataForMobileResponse {
|
|
|
195
195
|
unit_of_measure_quantity: Pick<UnitOfMeasure, 'notation' | 'integer_only'>;
|
|
196
196
|
promotions: IDocumentLine.IPromotions[];
|
|
197
197
|
}
|
|
198
|
-
export
|
|
198
|
+
export interface IFindStockForMobileResponse {
|
|
199
|
+
virtual: Pick<IProductVirtuals, 'price_sale' | 'available' | 'ordered_quantity' | 'prison' | 'reserved' | 'total' | 'inativa'>;
|
|
200
|
+
}
|
|
199
201
|
export type IFindForMobileRequest = {
|
|
200
202
|
reference: string;
|
|
201
203
|
id?: never;
|
|
@@ -6,7 +6,7 @@ import type { IDocumentTypeUserType } from '../modules/supply/documentType/inter
|
|
|
6
6
|
import type { IScheduleType } from '../modules/supply/schedule/interface';
|
|
7
7
|
import type { IWarningType } from '../modules/supply/documentHeader/interfaces';
|
|
8
8
|
import type { IProjectInfoType } from '../modules/integration/projectInfo/interfaces';
|
|
9
|
-
import type { IChat, IEmail, IEncomenda, IMultimedia, IMultimediaSummary, IPostgresBackup, IPrint, IProjectInfo, IProposta, IServiceLogs, IServiceStatus, IStock, ITask } from 'modules/view/adminPanel/interfaces';
|
|
9
|
+
import type { IChat, IEmail, IEncomenda, IMultimedia, IMultimediaSummary, IPostgresBackup, IPrint, IProjectInfo, IProposta, IServiceLogs, IServiceStatus, IStock, ITask } from '../modules/view/adminPanel/interfaces';
|
|
10
10
|
export { messages };
|
|
11
11
|
type CreatedAt = 'created_at';
|
|
12
12
|
type UpdatedAt = 'updated_at';
|