@oclif/core 1.13.2 → 1.13.3

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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.13.3](https://github.com/oclif/core/compare/v1.13.2...v1.13.3) (2022-08-06)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * improve flag types ([6d0b4e1](https://github.com/oclif/core/commit/6d0b4e1f1761baba0e085ea8d342a7bc913e7e5d))
11
+
5
12
  ### [1.13.2](https://github.com/oclif/core/compare/v1.13.1...v1.13.2) (2022-08-05)
6
13
 
7
14
 
@@ -194,9 +194,7 @@ export declare type CompletableOptionFlag<T> = OptionFlag<T> & {
194
194
  completion?: Completion;
195
195
  };
196
196
  export declare type CompletableFlag<T> = BooleanFlag<T> | CompletableOptionFlag<T>;
197
- export declare type FlagInput<T extends FlagOutput = {
198
- [flag: string]: unknown;
199
- }> = {
197
+ export declare type FlagInput<T extends FlagOutput = object> = {
200
198
  [P in keyof T]: CompletableFlag<T[P]>;
201
199
  };
202
200
  export {};
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/core",
3
3
  "description": "base library for oclif CLIs",
4
- "version": "1.13.2",
4
+ "version": "1.13.3",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {