@rockcarver/frodo-cli 4.0.0-49 → 4.0.0-50
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/CHANGELOG.md +4 -1
- package/dist/app.cjs +14 -1
- package/dist/app.cjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.0-49] - 2026-04-26
|
|
11
|
+
|
|
10
12
|
## [4.0.0-48] - 2026-04-21
|
|
11
13
|
|
|
12
14
|
## [4.0.0-47] - 2026-04-20
|
|
@@ -2259,7 +2261,8 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2259
2261
|
- Fixed problem with adding connection profiles
|
|
2260
2262
|
- Miscellaneous bug fixes
|
|
2261
2263
|
|
|
2262
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2264
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-49...HEAD
|
|
2265
|
+
[4.0.0-49]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-48...v4.0.0-49
|
|
2263
2266
|
[4.0.0-48]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-47...v4.0.0-48
|
|
2264
2267
|
[4.0.0-47]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-46...v4.0.0-47
|
|
2265
2268
|
[4.0.0-46]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-45...v4.0.0-46
|
package/dist/app.cjs
CHANGED
|
@@ -282266,6 +282266,19 @@ async function startRepl(allowAwait = false, host) {
|
|
|
282266
282266
|
const replServer = _replServer;
|
|
282267
282267
|
replServer.context.frodoLib = frodo;
|
|
282268
282268
|
replServer.context.frodo = frodo;
|
|
282269
|
+
state.setDebugHandler((message) => {
|
|
282270
|
+
if (!message || !state.getDebug()) return;
|
|
282271
|
+
const text2 = typeof message === "object" ? _util2.default.inspect(message, { depth: 6, colors: true }) : String(message)["brightMagenta"];
|
|
282272
|
+
replServer.output.write(text2 + "\n");
|
|
282273
|
+
});
|
|
282274
|
+
state.setVerboseHandler((message) => {
|
|
282275
|
+
if (!message || !state.getVerbose()) return;
|
|
282276
|
+
replServer.output.write(String(message) + "\n");
|
|
282277
|
+
});
|
|
282278
|
+
state.setCurlirizeHandler((message) => {
|
|
282279
|
+
if (!message || !state.getCurlirize()) return;
|
|
282280
|
+
replServer.output.write(String(message)["brightBlue"] + "\n");
|
|
282281
|
+
});
|
|
282269
282282
|
const { help } = createHelpContext(frodo);
|
|
282270
282283
|
replServer.context.help = help;
|
|
282271
282284
|
registerOpenParenHint(replServer, rootBindings, docsByMethod, (hint) => {
|
|
@@ -282798,7 +282811,7 @@ var compareVersions = (v12, v2) => {
|
|
|
282798
282811
|
// package.json
|
|
282799
282812
|
var package_default2 = {
|
|
282800
282813
|
name: "@rockcarver/frodo-cli",
|
|
282801
|
-
version: "4.0.0-
|
|
282814
|
+
version: "4.0.0-50",
|
|
282802
282815
|
type: "module",
|
|
282803
282816
|
description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
282804
282817
|
keywords: [
|