Adding a custom module with the API
You can add custom options, steps, conditions and triggers with the API
I recommend checking by yourself the code of the current modules to see how I coded that (with normal IDE import the dependency and you will be able to see the code of the plugin decompiled, go to the package blueprints and check the method loadDefaultInterpreter() in the class ConversationGlobalLoader in this package you also have all the class of the modules sort by package name of the type of the module (steps, conditions, options, triggers)
To create a new module, you need to create a class representing the module that extends the type of module, and after registering a config interpreter
Ex:
The module class
The interpreter register
else you will have problem, when the plugin reload all the interpreter is also reloaded
Last updated