minor errors

This commit is contained in:
Vyacheslav.Sviridov
2022-09-28 21:32:14 +06:00
parent 3fdf1e4c64
commit 16a9e3de60
4 changed files with 11 additions and 8 deletions

View File

@@ -127,7 +127,7 @@ class TopologyBrowser extends ENM {
persistent() {
this.includeNonPersistent = !this.includeNonPersistent
console.log(chalk.yellow(`Include Non Persistent Atrributes Set to: ${this.includeNonPersistent}`))
console.log(chalk.yellow(`Include Non Persistent Attributes Set to: ${this.includeNonPersistent}`))
}
async alarms(fdn) {

View File

@@ -3,7 +3,7 @@ const logAttributes = require('../../../../util/logAttributes')
async function show(filter) {
const axiosConfig = {
text: 'Getting Atrributes...',
text: 'Getting Attributes...',
method: 'get',
url: `${this.objectUrl}${this.currentPoId}`,
params: {

View File

@@ -1,6 +1,6 @@
{
"name": "enm-cli",
"version": "1.0.3a",
"version": "1.0.4a",
"description": "This is a cli application for Ericsson Network Manager (ENM)",
"bin": "./bin/enm-cli.js",
"scripts": {

View File

@@ -45,6 +45,9 @@ function logList(listReference, output) {
if (listReference.constraints) {
logConstraints(listReference.constraints, output)
}
if (listReference.enumeration) {
logEnumeration(listReference.enumeration, output)
}
}