@dsmrt/axiom-cli 0.2.0 → 0.2.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
@@ -1,5 +1,20 @@
1
1
  # @dsmrt/axiom-cli
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [90d88c8]
8
+ - @dsmrt/axiom-config@0.2.1
9
+
10
+ ## 0.2.1
11
+
12
+ ### Patch Changes
13
+
14
+ - c61c468: aws sdk issue with missing fast xml parser dep
15
+ - Updated dependencies [c61c468]
16
+ - @dsmrt/axiom-aws-sdk@0.2.1
17
+
3
18
  ## 0.2.0
4
19
 
5
20
  ### Minor Changes
package/dist/index.d.mts CHANGED
@@ -23,7 +23,7 @@ declare class Config<U extends ConfigOptions> implements CommandModule<object, U
23
23
  describe: string;
24
24
  builder?: CommandBuilder<object, U> | undefined;
25
25
  handler: (args: ArgumentsCamelCase<U>) => Promise<void>;
26
- loadConfig: (args: ConfigOptions) => Promise<_dsmrt_axiom_config.ConfigContainer<object>>;
26
+ loadConfig: (args: ConfigOptions) => Promise<_dsmrt_axiom_config.ConfigContainer & object>;
27
27
  }
28
28
 
29
29
  interface Options {
package/dist/index.d.ts CHANGED
@@ -23,7 +23,7 @@ declare class Config<U extends ConfigOptions> implements CommandModule<object, U
23
23
  describe: string;
24
24
  builder?: CommandBuilder<object, U> | undefined;
25
25
  handler: (args: ArgumentsCamelCase<U>) => Promise<void>;
26
- loadConfig: (args: ConfigOptions) => Promise<_dsmrt_axiom_config.ConfigContainer<object>>;
26
+ loadConfig: (args: ConfigOptions) => Promise<_dsmrt_axiom_config.ConfigContainer & object>;
27
27
  }
28
28
 
29
29
  interface Options {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "axiom cli for managing configs including secrets",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -51,8 +51,8 @@
51
51
  "chalk": "^4.1.2",
52
52
  "inquirer": "^8.0.0",
53
53
  "yargs": "^17.7.2",
54
- "@dsmrt/axiom-aws-sdk": "^0.2.0",
55
- "@dsmrt/axiom-config": "^0.2.0"
54
+ "@dsmrt/axiom-aws-sdk": "^0.2.1",
55
+ "@dsmrt/axiom-config": "^0.2.1"
56
56
  },
57
57
  "scripts": {
58
58
  "lint": "eslint ./src/ ./src/aws ./src/bin --ext .ts",