/** * @category Order * @customNamespace Order */ export declare const OrderGroupWorkflowEvents: { /** * Emitted when an order group is created. * * @eventPayload * ```ts * { * id, // The ID of the order group * } * ``` */ CREATED: string; }; export declare const SellerWorkflowEvents: { CREATED: string; UPDATED: string; DELETED: string; SUSPENDED: string; UNSUSPENDED: string; APPROVED: string; TERMINATED: string; UNTERMINATED: string; }; export declare const SellerMemberWorkflowEvents: { CREATED: string; UPDATED: string; DELETED: string; }; export declare const MemberInviteWorkflowEvents: { CREATED: string; ACCEPTED: string; }; export declare const OfferWorkflowEvents: { CREATED: string; UPDATED: string; DELETED: string; }; export declare const PaymentWebhookEvents: { /** * Emitted when a payment provider webhook reaches `/hooks/payment/:provider`. * * Mercur-specific on purpose: Medusa's `payment.webhook_received` would also * wake its own subscriber, which completes carts with the stock complete-cart * workflow instead of the marketplace split-order one. */ WEBHOOK_RECEIVED: string; };