doc and other commands

This commit is contained in:
Gabriel Pastori
2023-11-19 16:31:24 -03:00
parent f28fbfcea0
commit c66cd1ad7a
14 changed files with 289 additions and 77 deletions

18
lib/api/changeVersion.js Normal file
View File

@@ -0,0 +1,18 @@
const verifyEvolutionInstallation = require('../utils/verifyEvolutionInstallation.js');
const revertToVersion = require('../utils/revertToVersion.js');
module.exports = async (argv) => {
const { v } = argv || {}
if (!v) throw new Error('❌ Please specify a version to revert to. Example: evolution-manager api revert --v=1.5.0')
const isEvolutionInstalled = verifyEvolutionInstallation();
if (!isEvolutionInstalled) return;
console.log(`🔃 Reverting to Evolution-Api v${v}...`);
await revertToVersion(v);
console.log(`🔃 Reverted to Evolution-Api v${v} successfully`);
console.log('\n🔁 Please restart the process to use the reverted version\n')
};