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

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