/** * Status values for transfer orders. Represents the current state of a * [TransferOrder](entity:TransferOrder) in its lifecycle from creation to completion. * Each status determines what actions are available and how inventory is affected. */ export declare const TransferOrderStatus: { readonly Draft: "DRAFT"; readonly Started: "STARTED"; readonly PartiallyReceived: "PARTIALLY_RECEIVED"; readonly Completed: "COMPLETED"; readonly Canceled: "CANCELED"; }; export type TransferOrderStatus = (typeof TransferOrderStatus)[keyof typeof TransferOrderStatus];