UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

47 lines 1.19 kB
export const fields = [ { name: 'broadcast-id', label: 'Broadcast ID', placeholder: '559ac32e-9ef5-46fb-82a1-b76b840c0f7b', helpText: 'The ID of the broadcast you want to delete', cliFlag: '--broadcast-id', cliShortFlag: '-b', }, ]; export const deleteBroadcastFields = [ { name: 'broadcastId', label: 'Broadcast ID', type: 'input-with-selector', placeholder: '559ac32e-9ef5-46fb-82a1-b76b840c0f7b', helpText: 'Enter the broadcast ID to delete (only draft or scheduled broadcasts)', }, ]; // Display fields for the delete result export const displayFields = [ { name: 'object', label: 'Object', placeholder: '', helpText: '', cliFlag: '--object', cliShortFlag: '-o', }, { name: 'id', label: 'ID', placeholder: '', helpText: '', cliFlag: '--id', cliShortFlag: '-i', }, { name: 'deleted', label: 'Deleted', placeholder: '', helpText: '', cliFlag: '--deleted', cliShortFlag: '-d', }, ]; //# sourceMappingURL=fields.js.map