UNPKG

@basetime/bldr-sfmc

Version:

CLI application for SFMC Development workflow and package deployment

35 lines (33 loc) 1.4 kB
const Column = require('../utils/help/Column'); const displayStyles = require('../utils/displayStyles'); const { styles, width } = displayStyles.init(); module.exports = [ [ new Column(` `, width.c1, '', `${styles.dim('-')}`), new Column(` `, width.c2, '', `${styles.dim('-')}`), new Column(` `, width.c3, '', `${styles.dim('-')}`), ], [new Column(`${styles.command('clone')}`, width.c1), new Column(``, width.c2), new Column(``, width.c3)], [new Column(``, width.c1), new Column(`${styles.detail('--cb, --as')}`, width.c2), new Column(``, width.c3)], [ new Column(``, width.c1), new Column(` -f, --folder <folder id>`, width.c2), new Column(`Clone All Folders/Subfolders and Assets Starting at Identified Folder`, width.c3), ], [ new Column(``, width.c1), new Column(` -a, --asset <asset id>`, width.c2), new Column(`Clone a Single Asset`, width.c3), ], [new Column(``, width.c1), new Column(`${styles.detail('--as')}`, width.c2), new Column(``, width.c3)], [ new Column(``, width.c1), new Column(` --sql, --query <query id>`, width.c2), new Column(`Clone a Single Asset`, width.c3), ], [ new Column(``, width.c1), new Column(` --ssjs, --script <script id>`, width.c2), new Column(`Clone a Single Asset`, width.c3), ], ];