@rockcarver/frodo-cli 3.1.1-0 → 4.0.0-1
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/.vscode/launch.json +1 -1
- package/CHANGELOG.md +23 -1
- package/dist/app.cjs +7874 -3277
- package/dist/app.cjs.map +1 -1
- package/package.json +8 -28
- package/tsup.config.ts +1 -1
package/.vscode/launch.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated to Frodo Lib 4.0.0
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- Added `frodo config-manager` (`fr-config-manager`) commands.
|
|
17
|
+
- Added support for Node Designer Nodes through several API and Ops functions to allow for doing exports, imports, deletes, etc. with custom node configurations.<br><br>
|
|
18
|
+
Just like with journeys, custom nodes get exported and imported in the same way as they do from AIC/AM, so you can import Frodo exported custom nodes into AIC/AM and vice versa.<br><br>
|
|
19
|
+
Additionally, journeys were updated to include custom node dependencies during exports. Even if a journey is exported with Frodo and contains these dependencies in the export JSON, they can still be imported into AIC/AM using the admin UI as it should ignore the custom node dependencies (since AIC/AM doesn't support exporting them yet).
|
|
20
|
+
- Added `--retry <strategy>` option to all commands.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- \#XXX:
|
|
25
|
+
|
|
26
|
+
## [3.1.1-1] - 2026-01-25
|
|
27
|
+
|
|
28
|
+
## [3.1.1-0] - 2026-01-25
|
|
29
|
+
|
|
10
30
|
## [3.1.0] - 2026-01-22
|
|
11
31
|
|
|
12
32
|
## [3.0.10] - 2026-01-20
|
|
@@ -2107,7 +2127,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2107
2127
|
- Fixed problem with adding connection profiles
|
|
2108
2128
|
- Miscellaneous bug fixes
|
|
2109
2129
|
|
|
2110
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v3.1.
|
|
2130
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v3.1.1-1...HEAD
|
|
2131
|
+
[3.1.1-1]: https://github.com/rockcarver/frodo-cli/compare/v3.1.1-0...v3.1.1-1
|
|
2132
|
+
[3.1.1-0]: https://github.com/rockcarver/frodo-cli/compare/v3.1.0...v3.1.1-0
|
|
2111
2133
|
[3.1.0]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10...v3.1.0
|
|
2112
2134
|
[3.0.10]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10-1...v3.0.10
|
|
2113
2135
|
[3.0.10-1]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10-0...v3.0.10-1
|