rjon
Version:
route js object notation is a way to standardize route metadata for use and testing in universal route interpreter software
32 lines • 2.84 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.statIconMap = {
'baby': { icon: '👶', type: 'baby', details: 'New route but expected to be a stable route' },
'blue_book': { icon: '📘', type: 'blue_book', details: 'Contains data listings and/or bulk data' },
'boom': { icon: '💥', type: 'boom', details: 'Route may change, has recently changed, maybe brand new, and/or underconstruction' },
'broken_heart': { icon: '💔', type: 'broken_heart', details: 'Route is expected to break or already is broken' },
'bug': { icon: '🐛', type: 'bug', details: 'Known to be buggy' },
'busts_in_silhouette': { icon: '👥', type: 'busts_in_silhouette', details: 'Duplicate or near duplicate of another route' },
'closed_lock_with_key': { icon: '🔐', type: 'closed_lock_with_key', details: 'Security entry route' },
'confused': { icon: '😕', type: 'confused', details: 'The present past and/or future of this route is not clear' },
'construction': { icon: '🚧', type: 'construction', details: 'Work is being performed against route' },
'eyeglasses': { icon: '👓', type: 'eyeglasses', details: 'A data reading route' },
'fast_forward': { icon: '⏩', type: 'fast_forward', details: 'Skip using this route for now' },
'file_folder': { icon: '📁', type: 'file_folder', details: 'A static file server' },
'heavy_plus_sign': { icon: '➕', type: 'heavy_plus_sign', details: 'Route adds data' },
'hourglass': { icon: '⌛', type: 'hourglass', details: 'Known to be a slow route' },
'lock': { icon: '🔒', type: 'lock', details: 'A security measure route' },
'paperclip': { icon: '📎', type: 'paperclip', details: 'A single file resource' },
'pencil': { icon: '📝', type: 'pencil', details: 'A data editing route' },
'runner': { icon: '🏃', type: 'runner', details: 'Processor based execution' },
'seedling': { icon: '🌱', type: 'seedling', details: 'Duplicate Route, another route exists that you should be using' },
'skull': { icon: '💀', type: 'skull', details: 'Endpoint is deprecated and will soon be removed' },
'soon': { icon: '🔜', type: 'soon', details: 'Route is planned to exist and is a work in progress' },
'star': { icon: '⭐', type: 'star', details: 'Route is very stable and is NOT expected to change' },
'thumbsdown': { icon: '👎', type: 'thumbup', details: 'Route is unneccessary' },
'thumbup': { icon: '👍', type: 'thumbup', details: 'Route is liked' },
'turtle': { icon: '🐢', type: 'turtle', details: 'Route often is slow to respond' },
'wrench': { icon: '🔧', type: 'wrench', details: 'Work is being performed against route' }
//'white_circle' : {icon:'⚪', type:'white_circle', details:'Route is marked'},
};
//# sourceMappingURL=statIconMap.js.map