@rockcarver/frodo-cli 2.0.0-67 → 2.0.0-68

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,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.0.0-67] - 2024-07-11
11
+
10
12
  ### Added
11
13
 
12
14
  - New commands to manage IDM mappings:
@@ -16,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
18
  - `export` Export IDM mappings.
17
19
  - `import` Import IDM mappings.
18
20
  - `list` List IDM mappings.
19
- - `rename` Renames mappings from the combined/default/legacy naming scheme (sync/\<name>) to the separate/new naming scheme (mapping/\<name>). To rename mappings from new back to legacy, use the -l, --legacy flag.
21
+ - `rename` Renames mappings from the combined/default/legacy naming scheme (sync/\\<name>) to the separate/new naming scheme (mapping/\\<name>). To rename mappings from new back to legacy, use the -l, --legacy flag.
20
22
 
21
23
  ## [2.0.0-66] - 2024-07-10
22
24
 
@@ -1642,7 +1644,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1642
1644
  - Fixed problem with adding connection profiles
1643
1645
  - Miscellaneous bug fixes
1644
1646
 
1645
- [unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-66...HEAD
1647
+ [unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-67...HEAD
1648
+ [2.0.0-67]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-66...v2.0.0-67
1646
1649
  [2.0.0-66]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-65...v2.0.0-66
1647
1650
  [2.0.0-65]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-64...v2.0.0-65
1648
1651
  [2.0.0-64]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-63...v2.0.0-64
package/dist/app.cjs CHANGED
@@ -123393,7 +123393,7 @@ function stringify(obj) {
123393
123393
  }
123394
123394
  var package_default = {
123395
123395
  name: "@rockcarver/frodo-lib",
123396
- version: "2.0.0-93",
123396
+ version: "2.0.0-94",
123397
123397
  type: "commonjs",
123398
123398
  main: "./dist/index.js",
123399
123399
  module: "./dist/esm/index.js",
@@ -140617,9 +140617,10 @@ function defaultMatchRequestsBy() {
140617
140617
  }
140618
140618
  };
140619
140619
  }
140620
- function authenticationMatchRequestsBy() {
140620
+ function authenticationMatchRequestsBy(pathname = true) {
140621
140621
  const matchRequestsBy = defaultMatchRequestsBy();
140622
- matchRequestsBy["body"] = false;
140622
+ matchRequestsBy.body = false;
140623
+ matchRequestsBy.url.pathname = pathname;
140623
140624
  matchRequestsBy.order = true;
140624
140625
  return matchRequestsBy;
140625
140626
  }
@@ -140828,8 +140829,8 @@ function setupPollyForFrodoLib({
140828
140829
  });
140829
140830
  polly.server.any("/am/json/*").recordingName(`${getFrodoCommand({ state: state2 })}/am`);
140830
140831
  polly.server.any("/am/saml2/*").recordingName(`${getFrodoCommand({ state: state2 })}/saml2`);
140831
- polly.server.any("/openidm/managed/svcacct").recordingName(`${getFrodoCommand({ state: state2 })}/openidm/managed/svcacct`).on("request", (req) => {
140832
- req.configure({ matchRequestsBy: authenticationMatchRequestsBy() });
140832
+ polly.server.any(["/openidm/managed/svcacct", "/openidm/managed/svcacct/*"]).recordingName(`${getFrodoCommand({ state: state2 })}/openidm/managed/svcacct`).on("request", (req) => {
140833
+ req.configure({ matchRequestsBy: authenticationMatchRequestsBy(false) });
140833
140834
  });
140834
140835
  polly.server.any("/openidm/*").recordingName(`${getFrodoCommand({ state: state2 })}/openidm`);
140835
140836
  polly.server.any("/environment/*").recordingName(
@@ -186121,7 +186122,7 @@ var compareVersions = (v12, v2) => {
186121
186122
  // package.json
186122
186123
  var package_default2 = {
186123
186124
  name: "@rockcarver/frodo-cli",
186124
- version: "2.0.0-67",
186125
+ version: "2.0.0-68",
186125
186126
  type: "module",
186126
186127
  description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
186127
186128
  keywords: [
@@ -186235,7 +186236,7 @@ var package_default2 = {
186235
186236
  ]
186236
186237
  },
186237
186238
  devDependencies: {
186238
- "@rockcarver/frodo-lib": "2.0.0-93",
186239
+ "@rockcarver/frodo-lib": "2.0.0-94",
186239
186240
  "@types/colors": "^1.2.1",
186240
186241
  "@types/fs-extra": "^11.0.1",
186241
186242
  "@types/jest": "^29.2.3",