import { ConfigurableOperationInput, OrderLineInput } from '@vendure/common/lib/generated-types'; import { RequestContext } from '../../api'; import { Order } from '../../entity'; import { Fulfillment } from '../../entity/fulfillment/fulfillment.entity'; import { VendureEntityEvent } from '../vendure-entity-event'; /** * @description * The inputs used to create a new fulfillment * @since 1.4 */ type CreateFulfillmentInput = { orders: Order[]; lines: OrderLineInput[]; handler: ConfigurableOperationInput; }; /** * @description * This event is fired whenever a {@link Fulfillment} is added. The type is always `created`. * * @docsCategory events * @docsPage Event Types * @since 1.4 */ export declare class FulfillmentEvent extends VendureEntityEvent { constructor(ctx: RequestContext, entity: Fulfillment, input?: CreateFulfillmentInput); } export {};