@haystacks/async
Version:
A framework to build any number or any kind of native application or automation solution.
45 lines (40 loc) • 2.47 kB
JavaScript
/**
* @file application.command.constants.js
* @module application.command.constants
* @description A file to hold all of the client application command constants.
* So none of the constants in this file should be generic/system/framework constants.
* @requires {@link https://www.npmjs.com/package/@haystacks/constants|@haystacks/constants}
* @author Seth Hollingsead
* @date 2022/02/08
* @copyright Copyright © 2022-… by Seth Hollingsead. All rights reserved
*/
// External imports
import hayConst from '@haystacks/constants';
const {num, wrd} = hayConst;
// ********************************
// ApplicationSystem Commands in order
// ********************************
export const capplicationHelp = wrd.capplication + wrd.cHelp; // applicationHelp
export const capplicationWorkflowHelp = wrd.capplication + wrd.cWorkflow + wrd.cHelp; // applicationWorkflowHelp
// ********************************
// ApplicationTest Commands in order
// ********************************
export const cvalidateApplicationConstants = wrd.cvalidate + wrd.cApplication + wrd.cConstants; // validateApplicationConstants
export const cvalidateApplicationCommandAliases = wrd.cvalidate + wrd.cApplication + wrd.cCommand + wrd.cAliases; // validateApplicationCommandAliases
export const cvalidateApplicationWorkflows = wrd.cvalidate + wrd.cApplication + wrd.cWorkflows; // validateApplicationWorkflows
export const callApplicationValidations = wrd.call + wrd.cApplication + wrd.cValidations; // allApplicationValidations
// ********************************
// Client Commands in order
// ********************************
export const ccustomEchoCommand = wrd.ccustom + wrd.cEcho + wrd.cCommand; // customEchoCommand
export const cbossPanic = wrd.cboss + wrd.cPanic; // bossPanic
export const ccommand01 = wrd.ccommand + num.c0 + num.c1; // command01
export const ccommand02 = wrd.ccommand + num.c0 + num.c2; // command02
export const ccommand03 = wrd.ccommand + num.c0 + num.c3; // command03
export const ccommand04 = wrd.ccommand + num.c0 + num.c4; // command04
export const ccommand05 = wrd.ccommand + num.c0 + num.c5; // command05
export const ccommand06 = wrd.ccommand + num.c0 + num.c6; // command06
export const ccommand07 = wrd.ccommand + num.c0 + num.c7; // command07
export const ccommand08 = wrd.ccommand + num.c0 + num.c8; // command08
export const ccommand09 = wrd.ccommand + num.c0 + num.c9; // command09
export const ccommand10 = wrd.ccommand + num.c10; // command10