@rockcarver/frodo-cli 0.11.1-1 → 0.11.1-2
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
|
+
## [0.11.1-2] - 2022-08-21
|
|
11
|
+
|
|
10
12
|
## [0.11.1-1] - 2022-08-21
|
|
11
13
|
|
|
12
14
|
## [0.11.1-0] - 2022-08-19
|
|
@@ -406,7 +408,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
406
408
|
- Fixed problem with adding connection profiles
|
|
407
409
|
- Miscellaneous bug fixes
|
|
408
410
|
|
|
409
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-
|
|
411
|
+
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-2...HEAD
|
|
412
|
+
|
|
413
|
+
[0.11.1-2]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-1...v0.11.1-2
|
|
410
414
|
|
|
411
415
|
[0.11.1-1]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-0...v0.11.1-1
|
|
412
416
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockcarver/frodo-cli",
|
|
3
|
-
"version": "0.11.1-
|
|
3
|
+
"version": "0.11.1-2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
6
6
|
"keywords": [
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"@colors/colors": "^1.5.0",
|
|
83
|
-
"@rockcarver/frodo-lib": "^0.11.1-
|
|
83
|
+
"@rockcarver/frodo-lib": "^0.11.1-7",
|
|
84
84
|
"axios": "^0.27.2",
|
|
85
85
|
"axios-retry": "^3.3.1",
|
|
86
86
|
"cli-progress": "^3.11.2",
|
|
@@ -73,7 +73,7 @@ program
|
|
|
73
73
|
// export
|
|
74
74
|
if (options.journeyId) {
|
|
75
75
|
console.log('Exporting journey...');
|
|
76
|
-
exportJourneyToFile(options.journeyId, options.file, {
|
|
76
|
+
await exportJourneyToFile(options.journeyId, options.file, {
|
|
77
77
|
useStringArrays: options.useStringArrays,
|
|
78
78
|
deps: options.deps,
|
|
79
79
|
verbose: options.verbose,
|
|
@@ -82,7 +82,7 @@ program
|
|
|
82
82
|
// --all -a
|
|
83
83
|
else if (options.all) {
|
|
84
84
|
console.log('Exporting all journeys to a single file...');
|
|
85
|
-
exportJourneysToFile(options.file, {
|
|
85
|
+
await exportJourneysToFile(options.file, {
|
|
86
86
|
useStringArrays: options.useStringArrays,
|
|
87
87
|
deps: options.deps,
|
|
88
88
|
verbose: options.verbose,
|
|
@@ -91,7 +91,7 @@ program
|
|
|
91
91
|
// --all-separate -A
|
|
92
92
|
else if (options.allSeparate) {
|
|
93
93
|
console.log('Exporting all journeys to separate files...');
|
|
94
|
-
exportJourneysToFiles({
|
|
94
|
+
await exportJourneysToFiles({
|
|
95
95
|
useStringArrays: options.useStringArrays,
|
|
96
96
|
deps: options.deps,
|
|
97
97
|
verbose: options.verbose,
|