UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

63 lines 1.44 kB
// No input fields needed for listing broadcasts - it just lists all broadcasts export const fields = []; export const listBroadcastsFields = []; // Display fields for the list results export const displayFields = [ { name: 'id', label: 'ID', placeholder: '', helpText: '', cliFlag: '--id', cliShortFlag: '-i', }, { name: 'name', label: 'Name', placeholder: '', helpText: '', cliFlag: '--name', cliShortFlag: '-n', }, { name: 'audienceId', label: 'Audience ID', placeholder: '', helpText: '', cliFlag: '--audience-id', cliShortFlag: '-a', }, { name: 'status', label: 'Status', placeholder: '', helpText: '', cliFlag: '--status', cliShortFlag: '-s', }, { name: 'created_at', label: 'Created At', placeholder: '', helpText: '', cliFlag: '--created-at', cliShortFlag: '-c', }, { name: 'scheduled_at', label: 'Scheduled At', placeholder: '', helpText: '', cliFlag: '--scheduled-at', cliShortFlag: '-h', }, { name: 'sent_at', label: 'Sent At', placeholder: '', helpText: '', cliFlag: '--sent-at', cliShortFlag: '-t', }, ]; //# sourceMappingURL=fields.js.map