cisco-axl 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -79,7 +79,7 @@ Service constructor for methods. Requires a JSON object consisting of hostname,
79
79
  let service = new axlService("10.10.20.1", "administrator", "ciscopsdt", "14.0");
80
80
  ```
81
81
 
82
- ### axlService.returnOperations(filter?) ⇒ Returns promise
82
+ ### service.returnOperations(filter?) ⇒ Returns promise
83
83
 
84
84
  Method takes optional argument to filter results. No argument returns all operations. Returns results via Promise.
85
85
 
@@ -87,7 +87,7 @@ Method takes optional argument to filter results. No argument returns all operat
87
87
  | :--------------- | :------- | :----- | :--------- | :---------------------------------- |
88
88
  | returnOperations | filter | string | No | Provide a string to filter results. |
89
89
 
90
- ### axlService.getOperationTags(operation) ⇒ Returns promise
90
+ ### service.getOperationTags(operation) ⇒ Returns promise
91
91
 
92
92
  Method requires passing an AXL operation. Returns results via Promise.
93
93
 
@@ -95,7 +95,7 @@ Method requires passing an AXL operation. Returns results via Promise.
95
95
  | :--------------- | :-------- | :----- | :--------- | :----------------------------------------------------------------------- |
96
96
  | getOperationTags | operation | string | Yes | Provide the name of the AXL operation you wish to retrieve the tags for. |
97
97
 
98
- ### axlService.executeOperation(operation,tags,opts?) ⇒ Returns promise
98
+ ### service.executeOperation(operation,tags,opts?) ⇒ Returns promise
99
99
 
100
100
  Method requires passing an AXL operation and JSON object of tags. Returns results via Promise.
101
101
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cisco-axl",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A library to make Cisco AXL a lot easier",
5
5
  "main": "index.js",
6
6
  "scripts": {