@dx-do/cli 5.2.35 → 5.2.36
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/README.md +2 -2
- package/dist-node/main.js +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ npx @dx-do/cli@<version> <--config=<config-file>> command-group command <paramet
|
|
|
16
16
|
#### Output
|
|
17
17
|
|
|
18
18
|
```
|
|
19
|
-
ℹ info dx-do v5.2.
|
|
19
|
+
ℹ info dx-do v5.2.36 on node v24.14.1 on linux-x64 via node (ssl: 3.5.5)
|
|
20
20
|
ℹ info Loading configuration from env DXDO_CONFIGURATION (base64)
|
|
21
21
|
✔ success Command line configuration complete
|
|
22
22
|
ℹ info Allow Insecure HTTPS: false
|
|
@@ -210,7 +210,7 @@ npx @dx-do/cli@<version> <--config=<config-file>> command-group command <paramet
|
|
|
210
210
|
⤜ lifecycle.........................................: shows alarm lifecycle
|
|
211
211
|
⤜ detail............................................: dumps alarm details
|
|
212
212
|
⤜ create-alarm......................................: creates an alarm via jarvis ingestion
|
|
213
|
-
⤜ acknowledge.......................................:
|
|
213
|
+
⤜ acknowledge.......................................: acknowledges an alarm
|
|
214
214
|
```
|
|
215
215
|
#### apm-universe
|
|
216
216
|
```apm-universe
|
package/dist-node/main.js
CHANGED
|
@@ -204437,8 +204437,8 @@ var semver3 = __toESM(require_semver2(), 1);
|
|
|
204437
204437
|
|
|
204438
204438
|
// src/runtime.ts
|
|
204439
204439
|
function getVersion() {
|
|
204440
|
-
if ("5.2.
|
|
204441
|
-
return "5.2.
|
|
204440
|
+
if ("5.2.36") {
|
|
204441
|
+
return "5.2.36";
|
|
204442
204442
|
} else {}
|
|
204443
204443
|
}
|
|
204444
204444
|
|
|
@@ -214023,7 +214023,7 @@ var verticesCommand = createCommand("agent", "vertices", "gets vertices for agen
|
|
|
214023
214023
|
}
|
|
214024
214024
|
});
|
|
214025
214025
|
// src/app/commands/alarm/acknowledge.ts
|
|
214026
|
-
var acknowledgeCommand = createCommand("alarm", "acknowledge", "
|
|
214026
|
+
var acknowledgeCommand = createCommand("alarm", "acknowledge", "acknowledges an alarm", [createParameterDescriptor("alarmId", "id of the alarm to describe", true)], (argsMap) => {
|
|
214027
214027
|
const validationResult = emptyValidationResult();
|
|
214028
214028
|
ensureArgumentAndValue(argsMap, "alarmId", validationResult);
|
|
214029
214029
|
return Promise.resolve(validationResult);
|