@dsmrt/axiom-cli 0.0.8-alpha.0 → 0.0.8

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.
@@ -6,6 +6,6 @@ export declare class Config<U extends ConfigOptions> implements CommandModule<ob
6
6
  command: string;
7
7
  describe: string;
8
8
  handler: (args: ArgumentsCamelCase<U>) => Promise<void>;
9
- loadConfig: (args: ConfigOptions) => Promise<import("@dsmrt/axiom-config").Config & object>;
9
+ loadConfig: (args: ConfigOptions) => Promise<object & import("@dsmrt/axiom-config").BaseConfig>;
10
10
  }
11
11
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-cli",
3
- "version": "0.0.8-alpha.0",
3
+ "version": "0.0.8",
4
4
  "description": "axiom cli for managing configs including secrets",
5
5
  "main": "lib/bin/axiom.js",
6
6
  "types": "lib/index.d.ts",
@@ -48,8 +48,8 @@
48
48
  "chalk": "^4.1.2",
49
49
  "inquirer": "^8.0.0",
50
50
  "yargs": "^17.7.2",
51
- "@dsmrt/axiom-aws-sdk": "^0.0.8-alpha.0",
52
- "@dsmrt/axiom-config": "^0.0.8-alpha.0"
51
+ "@dsmrt/axiom-aws-sdk": "^0.0.8",
52
+ "@dsmrt/axiom-config": "^0.0.8"
53
53
  },
54
54
  "scripts": {
55
55
  "lint": "eslint ./src/ --ext .ts",