cisco-axl 1.1.4 → 1.1.5

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.
@@ -3,18 +3,16 @@ const path = require("path");
3
3
  const fs = require("fs");
4
4
 
5
5
  /*
6
- This script using json-variables (https://codsen.com/os/json-variables) to add a new phone from a template.
7
- The AXL "addPhone" operation will either add an existing line or add a new one.
8
- We will be using the "updateLine" to follow behind and update a few of the fields that "addPhone" does not include.
9
6
 
10
- Note: axlService is Promised based, so we using a nested promise. We wait for the "addPhone" promise to be fufilled before calling "updateLine".
7
+ This script will use getPhone to retrieve an existing phone and save as a JSON file. This file can then be edited to use as a template for other operations.
8
+
11
9
  */
12
10
 
13
11
  // Set up new AXL service (DevNet sandbox credentials: https://devnetsandbox.cisco.com/)
14
12
  let service = new axlService(
15
- "cucm01-pub.automate.builders",
13
+ "10.10.20.1",
16
14
  "administrator",
17
- "h0mel@b",
15
+ "ciscopsdt",
18
16
  "14.0"
19
17
  );
20
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cisco-axl",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "A library to make Cisco AXL a lot easier",
5
5
  "main": "index.js",
6
6
  "scripts": {