This is a package for creating wizards in both Discord and Telegram bots by just using a configuration flow object and the target map object. More descriptions will be written in the future.
Each main step object contains the following properties:
-
mainStep
: A string that represents the name of the main step. -
description
: A string that provides a brief description of the main step. -
steps
: An array of objects, each representing a step within the main step.
Each step object within the steps
array contains the following properties:
-
step
: A string that represents the name of the step. -
title
: A string that provides a title or prompt for the step. -
type
: A string that specifies the type of input or action required for the step. Possible values includeselect
,input
,check
,multiSelect
,selectTwo
, andeitherTrue
. -
mapTo
: A string or array of strings that specifies the path(s) in the configuration object where the step's value should be stored. -
valueType
: A string that specifies the type of value expected for the step. Possible values includenumber
,string
,boolean
,dateRange
,blockchainsSelect
,twoBoolean
, andstringArray
. -
options
: An optional array of objects, each representing an option for the step if thetype
isselect
,multiSelect
, orselectTwo
. Each option object containstext
andvalue
properties. -
dependsOn
: An optional object that specifies conditions under which the step is applicable. It includestype
,key
,value
,condition
, andonSkip
properties. -
validation
: An optional function that validates the input for the step. -
validationError
: An optional string that specifies the error message to display if the validation fails.
{
mainStep: "Chain Selection",
description: "Select which chain and how to create your token.",
steps: [
{
step: "chooseChain",
title: "Choose a chain to launch your token.",
type: "select",
mapTo: "general.chain",
valueType: "number",
options: [
{
text: "Goerli ETH",
value: "5",
},
{
text: "Forkfy ETH",
value: "1337",
},
],
},
// Additional steps...
],
},
// Additional main steps...
];```