cisco-axl 1.5.0 → 2.1.0
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.
- package/.claude-plugin/plugin.json +26 -0
- package/.github/FUNDING.yml +1 -0
- package/.github/workflows/ci.yml +1 -1
- package/README.md +253 -303
- package/bin/cisco-axl.js +2 -0
- package/cli/commands/add.js +185 -0
- package/cli/commands/config.js +149 -0
- package/cli/commands/describe.js +84 -0
- package/cli/commands/execute.js +183 -0
- package/cli/commands/get.js +93 -0
- package/cli/commands/list.js +216 -0
- package/cli/commands/operations.js +80 -0
- package/cli/commands/remove.js +61 -0
- package/cli/commands/sql.js +110 -0
- package/cli/commands/update.js +195 -0
- package/cli/formatters/csv.js +16 -0
- package/cli/formatters/json.js +12 -0
- package/cli/formatters/table.js +55 -0
- package/cli/formatters/toon.js +15 -0
- package/cli/index.js +46 -0
- package/cli/utils/audit.js +89 -0
- package/cli/utils/config.js +311 -0
- package/cli/utils/connection.js +146 -0
- package/cli/utils/output.js +53 -0
- package/cli/utils/readonly.js +31 -0
- package/cli/utils/stdin.js +20 -0
- package/cli/utils/template.js +80 -0
- package/dist/index.js +29 -6
- package/dist/index.js.map +1 -1
- package/package.json +14 -5
- package/skills/cisco-axl-cli/SKILL.md +222 -0
- package/src/index.ts +32 -6
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cisco-axl",
|
|
3
|
+
"description": "Cisco CUCM AXL CLI skills for provisioning phones, lines, route patterns, partitions, CSS, and more via the Administrative XML API",
|
|
4
|
+
"version": "2.0.0",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Jeremy Worden",
|
|
7
|
+
"url": "https://github.com/sieteunoseis"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/sieteunoseis/cisco-axl#readme",
|
|
10
|
+
"repository": "https://github.com/sieteunoseis/cisco-axl",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"cisco",
|
|
14
|
+
"cucm",
|
|
15
|
+
"axl",
|
|
16
|
+
"unified-communications",
|
|
17
|
+
"voip",
|
|
18
|
+
"telephony",
|
|
19
|
+
"provisioning",
|
|
20
|
+
"soap",
|
|
21
|
+
"callmanager",
|
|
22
|
+
"cli",
|
|
23
|
+
"automation",
|
|
24
|
+
"bulk-provisioning"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
buy_me_a_coffee: automatebldrs
|