@rockcarver/frodo-cli 4.0.0-27 → 4.0.0-29

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 CHANGED
@@ -7,6 +7,10 @@ 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-28] - 2026-03-24
11
+
12
+ ## [4.0.0-27] - 2026-03-23
13
+
10
14
  ## [4.0.0-26] - 2026-03-23
11
15
 
12
16
  ## [4.0.0-25] - 2026-03-23
@@ -2215,7 +2219,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
2215
2219
  - Fixed problem with adding connection profiles
2216
2220
  - Miscellaneous bug fixes
2217
2221
 
2218
- [unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-26...HEAD
2222
+ [unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-28...HEAD
2223
+ [4.0.0-28]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-27...v4.0.0-28
2224
+ [4.0.0-27]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-26...v4.0.0-27
2219
2225
  [4.0.0-26]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-25...v4.0.0-26
2220
2226
  [4.0.0-25]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-24...v4.0.0-25
2221
2227
  [4.0.0-24]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-23...v4.0.0-24
package/dist/app.cjs CHANGED
@@ -219813,6 +219813,7 @@ async function configManagerExportAuthentication(realm2) {
219813
219813
  saveJsonToFile19(exportData, getFilePath20(`${fileName}`, true), false, true);
219814
219814
  } else {
219815
219815
  for (const realmName of await realmList()) {
219816
+ if (realmName === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
219816
219817
  state.setRealm(realmName);
219817
219818
  const exportData = await _readAuthenticationSettings2(false);
219818
219819
  const fileName = `realms/${realmName}/realm-config/authentication.json`;
@@ -220317,6 +220318,7 @@ async function configManagerExportJourneys(name, realm2, pullDependency) {
220317
220318
  processJourneys(exportData.trees, realm2, name, pullDependency, "realms");
220318
220319
  } else {
220319
220320
  for (const realm3 of await realmList()) {
220321
+ if (realm3 === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
220320
220322
  state.setRealm(realm3);
220321
220323
  const exportData = await exportJourneys2(
220322
220324
  options
@@ -220796,6 +220798,7 @@ async function configManagerExportOrgPrivilegesAllRealms() {
220796
220798
  try {
220797
220799
  configManagerExportOrgPrivileges();
220798
220800
  for (const realm2 of await readRealms4()) {
220801
+ if (realm2.name === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
220799
220802
  state.setRealm(realm2.name);
220800
220803
  if (!await configManagerExportOrgPrivilegesRealm(realm2.name)) {
220801
220804
  return false;
@@ -221128,6 +221131,7 @@ async function configManagerExportScriptsRealms(prefix = null, justContent = fal
221128
221131
  async function configManagerExportScriptsAll(prefix = null, justContent = false, justConfig = false, scriptType = null, language = "JAVASCRIPT") {
221129
221132
  try {
221130
221133
  for (const realm2 of await realmList()) {
221134
+ if (realm2 === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
221131
221135
  state.setRealm(realm2);
221132
221136
  verboseMessage2(`
221133
221137
  ${state.getRealm()} realm:`);
@@ -221789,20 +221793,12 @@ function setup78() {
221789
221793
  options,
221790
221794
  command
221791
221795
  );
221792
- if (await getTokens2(false, true, deploymentTypes21)) {
221793
- verboseMessage2(
221794
- "Exporting config files that fr-config-manager supports."
221795
- );
221796
- const outcome = await configManagerExportAllStatic();
221797
- if (!outcome) process.exitCode = 1;
221798
- } else {
221799
- printMessage2(
221800
- "Unrecognized combination of options or no options...",
221801
- "error"
221802
- );
221803
- program2.help();
221796
+ if (!await getTokens2(false, true, deploymentTypes21)) {
221804
221797
  process.exitCode = 1;
221798
+ return;
221805
221799
  }
221800
+ const outcome = await configManagerExportAllStatic();
221801
+ if (!outcome) process.exitCode = 1;
221806
221802
  });
221807
221803
  return program2;
221808
221804
  }
@@ -239674,7 +239670,7 @@ var compareVersions = (v12, v2) => {
239674
239670
  // package.json
239675
239671
  var package_default2 = {
239676
239672
  name: "@rockcarver/frodo-cli",
239677
- version: "4.0.0-27",
239673
+ version: "4.0.0-29",
239678
239674
  type: "module",
239679
239675
  description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
239680
239676
  keywords: [