import type { OptionalNullablePartial } from '../tools'; import type { Position, PositionPatch } from './Position'; export type InventoryPositionFields = { correctionAmount: number; calculatedQuantity: number; correctionSum: number; }; export type InventoryPosition = Position<'inventoryposition'> & InventoryPositionFields; export type InventoryPositionPatch = PositionPatch<'invoiceposition'> & OptionalNullablePartial>;