multicloud_rule_manager 1.1.32 → 1.1.33

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.
@@ -2,14 +2,14 @@ import fs from "fs";
2
2
  import { getAlias } from "../utils/aliasManager.js";
3
3
 
4
4
  export default {
5
- command: "retrieve <alias> [output]",
6
- describe: "Recupera dati API con token automatico",
5
+ command: "retrievedatamap <alias> [output]",
6
+ describe: "Recupera datamaps",
7
7
  builder: {
8
8
  output: { type: "string", default: "retrieve.json", describe: "File di output" }
9
9
  },
10
10
  handler: async (argv) => {
11
11
  try {
12
- console.log("🔹 Retrieve in corso..");
12
+ console.log("🔹 Retrieve Datamap in corso..");
13
13
  console.log("🔹 Recupero credenziali per alias:", argv.alias);
14
14
  const cred = getAlias(argv.alias);
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multicloud_rule_manager",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
4
4
  "description": "CLI interna per retrieve/upload con token",
5
5
  "main": "index.js",
6
6
  "type": "module",