import { z } from 'zod';
import type { OutboxHandler } from '../types.js';

// Informational record — consumed by other cron jobs. No async side effect here.
export const purchaseExpiredSplit: OutboxHandler = {
  type: 'purchase.expired_split',
  payloadSchema: z.object({}),
  async handle(_ctx, _payload, _event) {
    // no-op: ack silently
  },
};
