import type { DocumentWithPositions, DocumentWithPositionsExpand, DocumentWithPositionsPatch } from '.'; import type { OptionalNullablePartial } from '../tools'; export type OrderMetaType = 'customerorder' | 'purchaseorder'; export type OrderFields = { /** Планируемая дата отгрузки */ deliveryPlannedMoment?: string; }; export type Order = DocumentWithPositions & OrderFields; export type OrderExpand = Pick, 'store'> & DocumentWithPositionsExpand; export type OrderPatch = DocumentWithPositionsPatch & OptionalNullablePartial>;