@rockcarver/frodo-cli 0.13.0 → 0.13.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/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.13.1] - 2022-09-23
11
+
10
12
  ## [0.13.0] - 2022-09-17
11
13
 
12
14
  ### Added
@@ -535,7 +537,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
535
537
  - Fixed problem with adding connection profiles
536
538
  - Miscellaneous bug fixes
537
539
 
538
- [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.13.0...HEAD
540
+ [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.13.1...HEAD
541
+
542
+ [0.13.1]: https://github.com/rockcarver/frodo-cli/compare/v0.13.0...v0.13.1
539
543
 
540
544
  [0.13.0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.5...v0.13.0
541
545
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rockcarver/frodo-cli",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
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": [
@@ -17,7 +17,12 @@ program
17
17
  .addArgument(common.passwordArgument)
18
18
  .addOption(common.deploymentOption)
19
19
  .addOption(common.insecureOption)
20
- .addOption(new Option('-i, --secret-id <secret-id>', 'Secret id.'))
20
+ .addOption(
21
+ new Option(
22
+ '-i, --secret-id <secret-id>',
23
+ 'Secret id.'
24
+ ).makeOptionMandatory()
25
+ )
21
26
  .action(
22
27
  // implement command logic inside action handler
23
28
  async (host, realm, user, password, options) => {
@@ -17,7 +17,12 @@ program
17
17
  .addArgument(common.passwordArgument)
18
18
  .addOption(common.deploymentOption)
19
19
  .addOption(common.insecureOption)
20
- .addOption(new Option('-i, --variable-id <variable-id>', 'Variable id.'))
20
+ .addOption(
21
+ new Option(
22
+ '-i, --variable-id <variable-id>',
23
+ 'Variable id.'
24
+ ).makeOptionMandatory()
25
+ )
21
26
  .action(
22
27
  // implement command logic inside action handler
23
28
  async (host, realm, user, password, options) => {