module.exports = { 'generate:before': ({ asyncapi, templateParams = {} }) => { // Modify the AsyncAPI document before generation if (templateParams.version) { asyncapi._json.info.version = templateParams.version; } } };